Sha256: e320d242653099bcf1b357c3957e19b782501eb138fba946b7d2981d9526e2b1

Contents?: true

Size: 921 Bytes

Versions: 6

Compression:

Stored size: 921 Bytes

Contents

# frozen_string_literal: true

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

require "rdoc/task"

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = "rdoc"
  rdoc.title    = "DefraRubyFeatures"
  rdoc.options << "--line-numbers"
  rdoc.rdoc_files.include("README.md")
  rdoc.rdoc_files.include("lib/**/*.rb")
end

load "rails/tasks/statistics.rake"

Bundler::GemHelper.install_tasks

Dir[File.join(File.dirname(__FILE__), "lib/tasks/**/*.rake")].each { |f| load f }

require "bundler/gem_tasks"

require "rake/testtask"

# This is wrapped to prevent an error when rake is called in environments where
# rspec may not be available, e.g. production. As such we don't need to handle
# the error.
begin
  require "rspec/core/rake_task"

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

  task default: :spec
rescue LoadError
  # no rspec available
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
defra_ruby_features-0.2.0 Rakefile
defra_ruby_features-0.1.4 Rakefile
defra_ruby_features-0.1.3 Rakefile
defra_ruby_features-0.1.2 Rakefile
defra_ruby_features-0.1.1 Rakefile
defra_ruby_features-0.1.0 Rakefile