Sha256: bafdc341dc918067da28bc76bafc0e5bcb5cf47b7e848502d6f073e20e000af8

Contents?: true

Size: 617 Bytes

Versions: 22

Compression:

Stored size: 617 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
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'

APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'

Bundler::GemHelper.install_tasks

Dir[File.join(File.dirname(__FILE__), 'tasks/**/*.rake')].each {|f| load f }

require 'rspec/core'
require 'rspec/core/rake_task'

desc 'Run all specs in spec directory (excluding plugin specs)'
RSpec::Core::RakeTask.new(spec: 'app:db:test:prepare')

task default: :spec

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
apicasso-0.7.3 Rakefile
apicasso-0.7.2 Rakefile
apicasso-0.7.1 Rakefile
apicasso-0.7.0 Rakefile
apicasso-0.6.8 Rakefile
apicasso-0.6.7 Rakefile
apicasso-0.6.6 Rakefile
apicasso-0.6.5 Rakefile
apicasso-0.6.4 Rakefile
apicasso-0.6.3 Rakefile
apicasso-0.6.2 Rakefile
apicasso-0.6.1 Rakefile
apicasso-0.6.0 Rakefile
apicasso-0.5.2 Rakefile
apicasso-0.5.1 Rakefile
apicasso-0.5.0 Rakefile
apicasso-0.4.11 Rakefile
apicasso-0.4.10 Rakefile
apicasso-0.4.9 Rakefile
apicasso-0.4.8 Rakefile