Sha256: d9224d131f064ec5b7cf70332df400dd6eb5fb0586979aec9585de1fb60f354e

Contents?: true

Size: 808 Bytes

Versions: 83

Compression:

Stored size: 808 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", __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')

RSpec::Core::RakeTask.new(:fastspec) do |task|
  file_list = FileList['spec/**/*_spec.rb']

  %w(requests integration features).each do |exclude|
    file_list = file_list.exclude("spec/#{exclude}/**/*_spec.rb")
  end

  task.pattern = file_list
end

task default: :spec

Version data entries

83 entries across 83 versions & 1 rubygems

Version Path
tenon-1.1.8 Rakefile
tenon-1.1.7 Rakefile
tenon-1.1.6 Rakefile
tenon-1.1.5 Rakefile
tenon-1.1.4 Rakefile
tenon-1.1.3 Rakefile
tenon-1.1.2 Rakefile
tenon-1.1.1 Rakefile
tenon-1.0.76 Rakefile
tenon-1.0.75 Rakefile
tenon-1.0.74 Rakefile
tenon-1.0.73 Rakefile
tenon-1.0.72 Rakefile
tenon-1.0.71 Rakefile
tenon-1.0.70 Rakefile
tenon-1.0.69 Rakefile
tenon-1.0.68 Rakefile
tenon-1.0.67 Rakefile
tenon-1.0.66 Rakefile
tenon-1.0.65 Rakefile