Skip to content

Commit

Permalink
Convenient rake tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
epall committed Mar 23, 2011
1 parent d2ee09c commit 7828bd3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,11 @@ Rake::TestTask.new(:test) do |test|
test.pattern = 'test/**/test_*.rb'
test.verbose = true
end

task :build do
system "gem build jasmine-sauce.gemspec"
end

task :push => :build do
system "gem push `ls *.gem | sort | tail -n 1`"
end

0 comments on commit 7828bd3

Please sign in to comment.