Sha256: 0bae04909fc06b328b2b28629e50cd78aada074b63b9c1ed512c6a51d6ae25c7
Contents?: true
Size: 1.36 KB
Versions: 3
Compression:
Stored size: 1.36 KB
Contents
module MyScripts # This script wraps up all work done on project in current directory, # adds all new(unversioned) files to git, commits all work done so far, # optionally bumps project version and pushes changes to remote repo # class Gitto < Script def run usage "[0.1.2 - version, 100/10/1 - bump major/minor/patch, .patch - add patch] Commit message goes here" if @argv.empty? # First Arg may indicate version command if it matches pattern version_command = @argv[0] =~ /^(\d+\.\d+\.\d+(?:\.(.*?))?|\.(.*?)|\d{1}0{0,2})$/ ? @argv.shift : nil # All the other args lumped into message, or default message if @argv.empty? commit_message = "Commit #{Time.now.to_s[0..-6]}" history_message = nil else commit_message = history_message = @argv.join(' ') end # Updating version if version command set if version_command puts "Updating version with #{version_command}" if history_message system %Q{rake "version[#{version_command},#{history_message}]"} else system %Q{rake version[#{version_command}]} end end puts "Committing with message: #{commit_message}" system %Q{git add --all} system %Q{git commit -a -m "#{commit_message}" --author arvicco} puts "Pushing to remote(s)" system %Q{git push} end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
my_scripts-0.1.7 | lib/my_scripts/scripts/gitto.rb |
my_scripts-0.1.5 | lib/my_scripts/scripts/gitto.rb |
my_scripts-0.1.3 | lib/my_scripts/scripts/gitto.rb |