Rakefile in tax_generator-0.1.0 vs Rakefile in tax_generator-0.2.0

- old
+ new

@@ -1,10 +1,11 @@ require 'bundler/setup' require 'bundler/gem_tasks' require 'rspec/core/rake_task' require 'yard' require 'yard-rspec' +require 'tax_generator' RSpec::Core::RakeTask.new(:spec) do |spec| spec.rspec_opts = ['--backtrace '] if ENV['DEBUG'] end @@ -20,7 +21,7 @@ desc 'Default: run the unit tests.' task default: [:all] desc 'Test the plugin under all supported Rails versions.' task :all do |_t| - exec('bundle exec rubocop . && bundle exec inch --pedantic && bundle exec yard stats --list-undoc && bundle exec rake spec') + exec('bundle exec rubocop . && bundle exec inch --pedantic && bundle exec yard stats --list-undoc && bundle exec rake spec') end