Sha256: c463cc1d7d0f0b264dfc57f98564aec021286dcc8e812a9705ec045deca32cf2

Contents?: true

Size: 490 Bytes

Versions: 7

Compression:

Stored size: 490 Bytes

Contents

begin
  require "bundler/setup"
rescue LoadError
  puts "You must `gem install bundler` and `bundle install` to run rake tasks"
end

Bundler::GemHelper.install_tasks

require "bundler/gem_tasks"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:spec)

task :default do
  system "bundle exec rspec spec"
end

task :check do
  system "coveralls report"
  system "rubocop"
  system "inch --pedantic"
  system "metric_fu --no-cane --no-saikuro --no-roodi --no-hotspots --no-stats"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hexx-7.1.0 Rakefile
hexx-7.0.1 Rakefile
hexx-7.0.0 Rakefile
hexx-6.0.3 Rakefile
hexx-6.0.2 Rakefile
hexx-6.0.1 Rakefile
hexx-6.0.0 Rakefile