Sha256: 52bcf81b37f9334435193862c07debdece1dfb0f1e4bee1e33b6b41744009ea3

Contents?: true

Size: 591 Bytes

Versions: 1

Compression:

Stored size: 591 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'yard'

Bundler::GemHelper.install_tasks

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

task :test => :spec
task :default => :spec

namespace :spec do
  [:integration, :unit].each do |type|
    desc "Run the code examples in spec/#{type}"
    RSpec::Core::RakeTask.new(type) do |t|
      t.pattern = "./spec/#{type}/**/*_spec.rb"
    end
  end
end

YARD::Rake::YardocTask.new do |t|
  t.files   = ['lib/**/*.rb', 'README.md']
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
angellist_api-1.0.2 Rakefile