Sha256: f5d08fb3e72e6ab15f18b5961c93d6718d8de93533ab9258f23be41b848cee6a

Contents?: true

Size: 783 Bytes

Versions: 10

Compression:

Stored size: 783 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
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Rapidfire'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

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



Bundler::GemHelper.install_tasks

desc 'Default: run rspec tests.'
task :default => :rspec

desc 'Run rspec unit and integration tests'
task :rspec do |t|
  exec('bundle exec rspec spec')
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
rapidfire-8.0.0 Rakefile
rapidfire-5.0.0 Rakefile
rapidfire-4.0.0 Rakefile
rapidfire-3.1.0 Rakefile
rapidfire-3.0.0 Rakefile
rapidfire-2.1.0 Rakefile
rapidfire-2.0.0 Rakefile
unique_rapidfire-1.0.0 Rakefile
rapidfire-1.2.0 Rakefile
rapidfire-1.0.0 Rakefile