Rakefile in librollenspielsache-rb-0.1.0 vs Rakefile in librollenspielsache-rb-0.1.1

- old
+ new

@@ -2,15 +2,15 @@ require 'bundler/gem_tasks' require 'rspec/core/rake_task' require 'rubocop/rake_task' -ENV['LD_LIBRARY_PATH'] = 'ext' +ENV['LD_LIBRARY_PATH'] = './ext' RSpec::Core::RakeTask.new(:spec) RuboCop::RakeTask.new(:lint) do |task| task.patterns = ['lib/**/*.rb', 'spec/**/*.rb'] - task.fail_on_error = false + task.fail_on_error = false # I'd rather see all of them end task default: :spec