Sha256: 94437a2228b98894109f877ea2a327240b2ba656ec4513a512c032ca78011b91
Contents?: true
Size: 359 Bytes
Versions: 1
Compression:
Stored size: 359 Bytes
Contents
# frozen_string_literal: true require 'bundler/gem_tasks' require 'rspec/core/rake_task' require 'rubocop/rake_task' 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 # I'd rather see all of them end task default: :spec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
librollenspielsache-rb-0.1.1 | Rakefile |