Rakefile in dbview_cti-0.0.2 vs Rakefile in dbview_cti-0.0.3

- old
+ new

@@ -1,6 +1,9 @@ #!/usr/bin/env rake + +require 'rspec/core/rake_task' + begin require 'bundler/setup' rescue LoadError puts 'You must `gem install bundler` and `bundle install` to run rake tasks' end @@ -18,10 +21,10 @@ rdoc.options << '--line-numbers' rdoc.rdoc_files.include('README.rdoc') rdoc.rdoc_files.include('lib/**/*.rb') end - - +RSpec::Core::RakeTask.new(:spec) +task :default => :spec Bundler::GemHelper.install_tasks