Sha256: afe61b97864a8e026b8c2af318968e56e1c918221f7a29c067df4b0ab012c50f

Contents?: true

Size: 584 Bytes

Versions: 15

Compression:

Stored size: 584 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"
RSpec::Core::RakeTask.new :spec => %w(app:db:drop app:db:create app:db:migrate app:db:test:prepare)



task :default => :spec

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
blogo-0.1.4 Rakefile
blogo-0.1.3 Rakefile
blogo-0.1.2 Rakefile
blogo-0.1.1 Rakefile
blogo-0.1.0 Rakefile
blogo-0.0.10 Rakefile
blogo-0.0.9 Rakefile
blogo-0.0.8 Rakefile
blogo-0.0.7 Rakefile
blogo-0.0.6 Rakefile
blogo-0.0.5 Rakefile
blogo-0.0.4 Rakefile
blogo-0.0.3 Rakefile
blogo-0.0.2 Rakefile
blogo-0.0.1 Rakefile