Sha256: b4636764773bedb975343821d0dc34db956390edba0007e0f2d4b4583c21b332

Contents?: true

Size: 811 Bytes

Versions: 14

Compression:

Stored size: 811 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    = 'Crowdblog'
  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

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

# Alias for Cucumber
task :cucumber => 'app:cucumber'

# RSpec and Cucumber by default
task :default => [:spec, :cucumber]

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
crowdblog-0.0.16 Rakefile
crowdblog-0.0.15 Rakefile
crowdblog-0.0.14 Rakefile
crowdblog-0.0.13 Rakefile
crowdblog-0.0.12 Rakefile
crowdblog-0.0.10 Rakefile
crowdblog-0.0.9 Rakefile
crowdblog-0.0.8 Rakefile
crowdblog-0.0.7 Rakefile
crowdblog-0.0.6 Rakefile
crowdblog-0.0.5 Rakefile
crowdblog-0.0.4 Rakefile
crowdblog-0.0.3 Rakefile
crowdblog-0.0.2 Rakefile