Sha256: 5bc4ce849fc535af285113cfdd056744105ee1faba268bc4c5fc6446400121dd
Contents?: true
Size: 630 Bytes
Versions: 7
Compression:
Stored size: 630 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/setup' require 'bundler/gem_tasks' require 'appraisal' # Bundler::GemHelper.install_tasks APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__) load 'rails/tasks/engine.rake' require 'rspec/core/rake_task' namespace :dummy do require_relative "spec/dummy/config/application" Dummy::Application.load_tasks end RSpec::Core::RakeTask.new(:spec) desc 'Run all specs in spec directory (excluding plugin specs)' task default: :spec
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
invitation-0.5.0 | Rakefile |
invitation-0.4.5 | Rakefile |
invitation-0.4.4 | Rakefile |
invitation-0.4.3 | Rakefile |
invitation-0.4.2 | Rakefile |
invitation-0.4.1 | Rakefile |
invitation-0.4 | Rakefile |