Rakefile in rosemary-0.2.3 vs Rakefile in rosemary-0.2.4
- old
+ new
@@ -8,9 +8,16 @@
RSpec::Core::RakeTask.new(:rcov) do |spec|
spec.pattern = 'spec/**/*_spec.rb'
spec.rcov = true
end
+desc "Open an irb session preloaded with this library"
+task :console do
+ sh "irb -rubygems -I lib -r rosemary.rb"
+end
+
+task :c => :console
+
task :default => :spec
require "bundler/gem_tasks"