Sha256: 2a77a84db25bc5e5504fbbea23d439524077959a9b2238a39cc24f039fcd8afc

Contents?: true

Size: 861 Bytes

Versions: 4

Compression:

Stored size: 861 Bytes

Contents

# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.

require 'rspec/core/rake_task'
require 'bundler/gem_tasks'
require 'engine_cart/rake_task'

# Bundler.require(*Rails.groups)

# Rails.application.load_tasks

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

Bundler::GemHelper.install_tasks

# task :ci => ['engine_cart:generate'] do
# run the tests
# end

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

# task :default => :spec
# RSpec::Core::RakeTask.new

# Set up the test application prior to running jasmine tasks.
task :setup_test_server do
  require 'engine_cart'
  EngineCart.load_application!
end

Dir.glob('tasks/*.rake').each { |r| import r }
Dir.glob('lib/tasks/*.rake').each { |r| import r }

task default: :ci

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
iiif_print-1.0.0 Rakefile
newspaper_works-1.0.1 Rakefile
newspaper_works-1.0.0 Rakefile
newspaper_works-0.1.0 Rakefile