Sha256: 6887815ff176c8de4bebf466eaf38667ec7cb7cece3de57fe5e18b4424663d27

Contents?: true

Size: 564 Bytes

Versions: 29

Compression:

Stored size: 564 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')

task :default => :spec

Version data entries

29 entries across 29 versions & 2 rubygems

Version Path
writefully-0.8.2 Rakefile
writefully-0.8.1 Rakefile
writefully-0.8.0 Rakefile
writefully-0.7.1 Rakefile
writefully-0.6.12 Rakefile
writefully-0.6.11 Rakefile
writefully-0.6.10 Rakefile
writefully-0.6.9 Rakefile
writefully-0.6.7 Rakefile
writefully-0.6.6 Rakefile
writefully-0.6.5 Rakefile
writefully-0.6.4 Rakefile
writefully-0.6.3 Rakefile
writefully-0.6.2 Rakefile
writefully-0.5.1 Rakefile
writefully-0.5.0 Rakefile
writefully-0.4.10 Rakefile
writefully-0.4.8 Rakefile
writefully-0.4.7 Rakefile
writefully-0.4.6 Rakefile