Sha256: 8f5de8adee2031b3dfb4c9a5b64c9a598934097e9cb408e29eff16da8826974f

Contents?: true

Size: 681 Bytes

Versions: 10

Compression:

Stored size: 681 Bytes

Contents

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

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

10 entries across 10 versions & 1 rubygems

Version Path
govuk_publishing_components-4.1.0 Rakefile
govuk_publishing_components-4.0.0 Rakefile
govuk_publishing_components-3.3.0 Rakefile
govuk_publishing_components-3.2.1 Rakefile
govuk_publishing_components-3.2.0 Rakefile
govuk_publishing_components-3.1.0 Rakefile
govuk_publishing_components-3.0.3 Rakefile
govuk_publishing_components-3.0.2 Rakefile
govuk_publishing_components-3.0.1 Rakefile
govuk_publishing_components-3.0.0 Rakefile