Rakefile in boleto_bancario-0.0.1.beta vs Rakefile in boleto_bancario-0.0.2

- old
+ new

@@ -1,9 +1,15 @@ # encoding: utf-8 require 'bundler/gem_tasks' require 'yard' +require 'rspec/core/rake_task' +task :default => :spec + +desc 'Running Tests' +RSpec::Core::RakeTask.new(:spec) + desc 'Generate documentation' YARD::Rake::YardocTask.new do |t| t.files = ['lib/**/*.rb', '-', 'LICENSE'] t.options = ['--main', 'README.markdown', '--no-private', '--title', "Boleto Bancário #{BoletoBancario::VERSION}"] -end \ No newline at end of file +end