Sha256: f6bcb6fd3391924b0db8483b46fc04e1602e0e309efa39d7db44cc739142cfb8

Contents?: true

Size: 334 Bytes

Versions: 16

Compression:

Stored size: 334 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']
  task.fail_on_error = true
end

task default: [:spec, :rubocop, :build]

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
dock0-0.2.0 Rakefile
dock0-0.1.4 Rakefile
dock0-0.1.3 Rakefile
dock0-0.1.2 Rakefile
dock0-0.1.1 Rakefile
dock0-0.1.0 Rakefile
dock0-0.0.18 Rakefile
dock0-0.0.17 Rakefile
dock0-0.0.16 Rakefile
dock0-0.0.15 Rakefile
dock0-0.0.14 Rakefile
dock0-0.0.13 Rakefile
dock0-0.0.12 Rakefile
dock0-0.0.11 Rakefile
dock0-0.0.10 Rakefile
dock0-0.0.9 Rakefile