Skip to content

Commit

Permalink
Added rake file with update tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Narnach committed Mar 30, 2010
1 parent 1c5d16a commit b3a9fa5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tasks/number_recognizer.rake
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
namespace :nr do
desc 'Update number_recognizer plugin'
task :safe_update do
system "script/plugin install -f git://github.com/Narnach/number_recognizer.git"
end

desc 'Update number_recognizer plugin and auto-commit it to git.'
task :update do
system "script/plugin install -f git://github.com/Narnach/number_recognizer.git && git add vendor/plugins/number_recognizer && git commit -m 'Updated number_recognizer to latest version'"
end
end

0 comments on commit b3a9fa5

Please sign in to comment.