Sha256: 0e15e82a8c961827575323f7b5ada671b88ebf31d3ee6f332de0f2f682425f34

Contents?: true

Size: 553 Bytes

Versions: 8

Compression:

Stored size: 553 Bytes

Contents

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    = 'GovukNotifyRails'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |t|
  t.rspec_opts = %w(--color --format documentation)
end

task default: :spec

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
govuk_notify_rails-3.0.0 Rakefile
govuk_notify_rails-2.2.0 Rakefile
govuk_notify_rails-2.1.2 Rakefile
govuk_notify_rails-2.1.1 Rakefile
govuk_notify_rails-2.1.0 Rakefile
govuk_notify_rails-2.0.0 Rakefile
govuk_notify_rails-1.0.0 Rakefile
govuk_notify_rails-0.0.2 Rakefile