Rakefile in totally_lazy-0.0.4 vs Rakefile in totally_lazy-0.0.5
- old
+ new
@@ -46,5 +46,17 @@
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "totally_lazy #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
+
+desc 'run rspec guard'
+task :guard do
+ system('bundle exec guard')
+end
+
+desc 'rebuild gem'
+task :re do
+ system('gem uninstall totally_lazy && rake build && gem install -l pkg/totally_lazy-' + File.read('VERSION') + '.gem')
+end
+
+