Sha256: a758c4dcb659f0054a91624afcce62afc610106ef61dee7a741445298aa0c064

Contents?: true

Size: 353 Bytes

Versions: 169

Compression:

Stored size: 353 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: [:spec, :rubocop, :build, :install]

Version data entries

169 entries across 169 versions & 12 rubygems

Version Path
targit-0.1.3 Rakefile
targit-0.1.2 Rakefile
targit-0.1.1 Rakefile
targit-0.1.0 Rakefile
targit-0.0.6 Rakefile
targit-0.0.5 Rakefile
targit-0.0.4 Rakefile
targit-0.0.3 Rakefile
targit-0.0.2 Rakefile