Sha256: 2541f76700c80f149f732fb6c57ae4a81485912dffeb640756dd078961135d66

Contents?: true

Size: 456 Bytes

Versions: 6

Compression:

Stored size: 456 Bytes

Contents

#!/usr/bin/env rake

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

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

# load 'rails/tasks/engine.rake'

Bundler::GemHelper.install_tasks

require "rspec/core"
require "rspec/core/rake_task"
desc "Run all specs in spec directory (excluding plugin specs)"
RSpec::Core::RakeTask.new(:spec)
task default: :spec

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
infopark_component_cache-5.0.2 Rakefile
infopark_component_cache-5.0.1 Rakefile
infopark_component_cache-4.2.0 Rakefile
infopark_component_cache-4.1.0 Rakefile
infopark_component_cache-4.0.1 Rakefile
infopark_component_cache-4.0.0 Rakefile