Rakefile in twitter-bootstrap-rails-2.0.1 vs Rakefile in twitter-bootstrap-rails-2.0.1.0

- old
+ new

@@ -1,3 +1,14 @@ #!/usr/bin/env rake require 'bundler' Bundler::GemHelper.install_tasks + +desc "Bundle the gem" +task :bundle do + sh('bundle install') + sh 'gem build *.gemspec' + sh 'gem install *.gem' + sh 'rm *.gem' +end + +task(:default).clear +task :default => :bundle