Sha256: 78abc4bb97117fc90a98e4d0baf91c468c8545728ba106d502a4da6c3d37ccf0

Contents?: true

Size: 360 Bytes

Versions: 10

Compression:

Stored size: 360 Bytes

Contents

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'

task default: [:spec, :rubocop]

desc 'Run specs'
RSpec::Core::RakeTask.new(:spec)

desc 'Run rubocop'
task :rubocop do
  RuboCop::RakeTask.new
end

desc 'Display TODOs, FIXMEs, and OPTIMIZEs'
task :notes do
  system("grep -r 'OPTIMIZE:\\|FIXME:\\|TODO:' #{Dir.pwd}")
end

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
dnc-0.1.9 Rakefile
dnc-1.0.0 Rakefile
cert_munger-0.2.2 Rakefile
cert_munger-0.2.1 Rakefile
dnc-0.1.8 Rakefile
dnc-0.1.6 Rakefile
omniauth-dice-0.2.4 Rakefile
cert_munger-0.2.0 Rakefile
omniauth-dice-0.2.3 Rakefile
omniauth-dice-0.2.2 Rakefile