Sha256: 2c7e6aa02d2e7aef23e2f8f6ae3bd82fd582b71d1b6b48fc0dccfe846bf429a7

Contents?: true

Size: 706 Bytes

Versions: 10

Compression:

Stored size: 706 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'AngellistApi'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end



Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end


task :default => :test

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
angellist_api-0.1.0 Rakefile
angellist_api-0.0.9 Rakefile
angellist_api-0.0.8 Rakefile
angellist_api-0.0.7 Rakefile
angellist_api-0.0.6 Rakefile
angellist_api-0.0.5 Rakefile
angellist_api-0.0.4 Rakefile
angellist_api-0.0.3 Rakefile
angellist_api-0.0.2 Rakefile
angellist_api-0.0.1 Rakefile