Sha256: 3d44c9faece632076bca819cf96f01724b82bd721c0aabf12dd2a70043e4d43c

Contents?: true

Size: 1.05 KB

Versions: 1

Compression:

Stored size: 1.05 KB

Contents

require 'space2underscore/version'

module Space2underscore
  class << self
    def convert(argv)
      argv.length == 1 ? argv[0].strip.gsub(/\s/,  '_') : argv.join('_')
    end

    def generate_command(underscore_include_sentence)
      "echo #{underscore_include_sentence} | ruby -pe 'chomp' | #{copy_cmd}"
    end

    def execute_command(command)
      system command
    end

    def copy_cmd
      if system("type pbcopy > /dev/null 2>&1")
        "pbcopy"
      elsif system("type xsel > /dev/null 2>&1")
        "xsel --input --clipboard"
      elsif system("type xclip > /dev/null 2>&1")
        "xclip"
      end
    end

    def create_new_branch(underscore_include_sentence)
      print "Do you create the new branch? [y/Y]"
      flag = $stdin.gets.chomp

      if !!(flag =~ /^y(es)?$/i) || flag == ''
        system "git checkout -b #{underscore_include_sentence}"
        "Branch has been created."
      else
        execute_command(generate_command(underscore_include_sentence))

        "Branch name has been copied to clipboard."
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
space2underscore-0.2.1 lib/space2underscore.rb