Sha256: 730b7b815be51a4d975af0ac949997e13ecf25fb611c447bb04a9fb077aebab0
Contents?: true
Size: 426 Bytes
Versions: 2
Compression:
Stored size: 426 Bytes
Contents
#!/usr/bin/env rake require 'bundler' Bundler::GemHelper.install_tasks require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task default: :spec task test: :spec task default: :appraisal if !ENV['APPRAISAL_INITIALIZED'] && !ENV['TRAVIS'] require 'yard' namespace :doc do YARD::Rake::YardocTask.new do |task| task.files = ['LICENSE.md', 'lib/**/*.rb'] task.options = ['--markup', 'markdown'] end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
yellow-api-wrapper-0.0.2 | Rakefile |
yellow-api-wrapper-0.0.1 | Rakefile |