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.4.1 Rakefile
eco-helpers-1.4.0 Rakefile
ecoportal-api-oozes-0.6.1 Rakefile
ecoportal-api-oozes-0.6.0 Rakefile
eco-helpers-1.3.18 Rakefile
eco-helpers-1.3.17 Rakefile
ecoportal-api-oozes-0.5.9 Rakefile
eco-helpers-1.3.16 Rakefile
ecoportal-api-oozes-0.5.8 Rakefile
eco-helpers-1.3.15 Rakefile
eco-helpers-1.3.14 Rakefile
eco-helpers-1.3.13 Rakefile
eco-helpers-1.3.12 Rakefile
eco-helpers-1.3.11 Rakefile
eco-helpers-1.3.10 Rakefile
eco-helpers-1.3.9 Rakefile
eco-helpers-1.3.8 Rakefile
eco-helpers-1.3.7 Rakefile
ecoportal-api-oozes-0.5.7 Rakefile
eco-helpers-1.3.6 Rakefile