1
0
mirror of https://github.com/seejohnrun/haste-client.git synced 2025-12-13 15:25:55 +00:00
Files
haste-client/Rakefile
2013-11-08 14:04:24 -05:00

14 lines
295 B
Ruby

require File.dirname(__FILE__) + '/lib/haste/version'
task :build do
system "gem build haste.gemspec"
end
task :release => :build do
# tag and push
system "git tag v#{Haste::VERSION}"
system "git push origin --tags"
# push the gem
system "gem push haste-#{Haste::VERSION}.gem"
end