Sha256: 660d268ff167ec77ca5a8e252715ba53bee76f6d2cb39dd5b8e6d98c9f092376

Contents?: true

Size: 706 Bytes

Versions: 281

Compression:

Stored size: 706 Bytes

Contents

require "bundler/gem_tasks"
require "rspec/core/rake_task"
require "yard"
require "redcarpet"

desc "run the specs"
RSpec::Core::RakeTask.new(:spec)

desc "run rspec showing backtrace"
RSpec::Core::RakeTask.new(:spec_trace) do |task|
  task.rspec_opts = ['--backtrace']
end

desc "run rspec stopping on first fail, and show backtrace"
RSpec::Core::RakeTask.new(:spec_fast) do |task|
  task.rspec_opts = ['--fail-fast', '--backtrace']
end

# default task name is yard
desc "Yard: generate all the documentation"
YARD::Rake::YardocTask.new(:doc) do |t|
  #t.files = ['lib/**/*.rb']
end

task :default     => [:spec]
task :rspec_trace => :spec_trace
task :rspec_fast  => :spec_fast

Version data entries

281 entries across 281 versions & 5 rubygems

Version Path
eco-helpers-1.5.13 Rakefile
ecoportal-api-oozes-0.7.3 Rakefile
eco-helpers-1.5.12 Rakefile
eco-helpers-1.5.11 Rakefile
eco-helpers-1.5.10 Rakefile
eco-helpers-1.5.9 Rakefile
eco-helpers-1.5.8 Rakefile
eco-helpers-1.5.7 Rakefile
eco-helpers-1.5.6 Rakefile
eco-helpers-1.5.5 Rakefile
eco-helpers-1.5.4 Rakefile
eco-helpers-1.5.3 Rakefile
eco-helpers-1.5.2 Rakefile
eco-helpers-1.5.1 Rakefile
ecoportal-api-oozes-0.7.2 Rakefile
ecoportal-api-oozes-0.7.1 Rakefile
eco-helpers-1.5.0 Rakefile
ecoportal-api-oozes-0.7.0 Rakefile
eco-helpers-1.4.2 Rakefile
eco-helpers-1.3.19 Rakefile