Sha256: c3a05bc795e750cd1d4bea8e1bb19775bb474c5c24590246bd0b2baf54e12bb8
Contents?: true
Size: 892 Bytes
Versions: 1
Compression:
Stored size: 892 Bytes
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 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(branch) print "Do you create the new branch? [y/Y]" flag = $stdin.gets.chomp if flag == "y" || flag == "Y" system "git checkout -b #{branch}" "Branch has been created." else "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.0 | lib/space2underscore.rb |