Sha256: f43d2b60152f70f40a0e565154a55700c59a2b30bc1810b15eeaec066e6bbef3

Contents?: true

Size: 748 Bytes

Versions: 108

Compression:

Stored size: 748 Bytes

Contents

begin
  require 'rspec/core/rake_task'
  RSpec::Core::RakeTask.new(:spec)
rescue LoadError
  puts "Running in production mode"
end

APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)

load 'rails/tasks/engine.rake'
load 'rails/tasks/statistics.rake'

require 'bundler/gem_tasks'

namespace :assets do
  desc "Test precompiling assets through dummy application"
  task :precompile do
    Rake::Task['app:assets:precompile'].invoke
  end

  desc "Test cleaning assets through dummy application"
  task :clean do
    Rake::Task['app:assets:clean'].invoke
  end

  desc "Test clobbering assets through dummy application"
  task :clobber do
    Rake::Task['app:assets:clobber'].invoke
  end
end

task default: [:spec, 'app:jasmine:ci']

Version data entries

108 entries across 108 versions & 1 rubygems

Version Path
govuk_publishing_components-12.11.0 Rakefile
govuk_publishing_components-12.10.0 Rakefile
govuk_publishing_components-12.9.1 Rakefile
govuk_publishing_components-12.9.0 Rakefile
govuk_publishing_components-12.8.0 Rakefile
govuk_publishing_components-12.7.1 Rakefile
govuk_publishing_components-12.7.0 Rakefile
govuk_publishing_components-12.6.0 Rakefile
govuk_publishing_components-12.5.0 Rakefile
govuk_publishing_components-12.4.0 Rakefile
govuk_publishing_components-12.3.0 Rakefile
govuk_publishing_components-12.2.0 Rakefile
govuk_publishing_components-12.1.0 Rakefile
govuk_publishing_components-12.0.1 Rakefile
govuk_publishing_components-12.0.0 Rakefile
govuk_publishing_components-11.2.0 Rakefile
govuk_publishing_components-11.1.0 Rakefile
govuk_publishing_components-11.0.0 Rakefile
govuk_publishing_components-10.2.0 Rakefile
govuk_publishing_components-10.1.0 Rakefile