Sha256: 9fbaa72a7edb4c5295a0d7980151a65bc0de7857d7825bef643d772f1004c683
Contents?: true
Size: 351 Bytes
Versions: 2
Compression:
Stored size: 351 Bytes
Contents
require 'bundler/gem_tasks' require 'rspec/core/rake_task' require 'rubocop/rake_task' desc 'Run tests' RSpec::Core::RakeTask.new(:spec) desc 'Run Rubocop on the gem' RuboCop::RakeTask.new(:rubocop) do |task| task.patterns = ['lib/**/*.rb', 'spec/**/*.rb', 'bin/**/*'] task.fail_on_error = true end task default: %i[spec rubocop build install]
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
githubchart-4.0.0 | Rakefile |
githubchart-3.4.0 | Rakefile |