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
ecoportal-api-v2-2.0.9 Rakefile
ecoportal-api-v2-2.0.8 Rakefile
ecoportal-api-v2-2.0.7 Rakefile
ecoportal-api-v2-2.0.6 Rakefile
ecoportal-api-v2-2.0.5 Rakefile
ecoportal-api-v2-2.0.4 Rakefile
ecoportal-api-v2-2.0.3 Rakefile
ecoportal-api-v2-2.0.2 Rakefile
ecoportal-api-v2-2.0.1 Rakefile
ecoportal-api-v2-2.0.0 Rakefile
ecoportal-api-v2-1.1.8 Rakefile
ecoportal-api-v2-1.1.7 Rakefile
eco-helpers-2.6.4 Rakefile
ecoportal-api-0.9.7 Rakefile
eco-helpers-2.6.3 Rakefile
ecoportal-api-v2-1.1.6 Rakefile
eco-helpers-2.6.2 Rakefile
eco-helpers-2.6.1 Rakefile
eco-helpers-2.6.0 Rakefile
ecoportal-api-graphql-0.3.13 Rakefile