Sha256: e11884107002b96f469b5cc9d342784fbd11b827338c59e444f09b2c09aa249f

Contents?: true

Size: 303 Bytes

Versions: 14

Compression:

Stored size: 303 Bytes

Contents

require "bundler/gem_tasks"
require "rake/testtask"

Rake::TestTask.new(:test) do |t|
  t.libs << "test"
  t.libs << "lib"
  t.test_files = FileList["test/**/*_test.rb"]
end

task :default => :test

namespace :docker do
  task :build do
    sh 'docker', 'build', '-t', 'goodcheck:latest', '.'
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
goodcheck-2.2.0 Rakefile
goodcheck-2.1.2 Rakefile
goodcheck-2.1.1 Rakefile
goodcheck-2.1.0 Rakefile
goodcheck-1.7.1 Rakefile
goodcheck-1.7.0 Rakefile
goodcheck-1.6.0 Rakefile
goodcheck-1.5.1 Rakefile
goodcheck-1.5.0 Rakefile
goodcheck-1.4.1 Rakefile
goodcheck-1.4.0 Rakefile
goodcheck-1.3.1 Rakefile
goodcheck-1.2.0 Rakefile
goodcheck-1.1.0 Rakefile