Sha256: af4b5c70297099541448ad0394b0ab63078b0fdcfa9995307b55f57a421e7de3

Contents?: true

Size: 562 Bytes

Versions: 32

Compression:

Stored size: 562 Bytes

Contents

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

require 'rdoc/task'

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

require 'bundler/gem_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

32 entries across 32 versions & 1 rubygems

Version Path
try_api-0.0.17 Rakefile
try_api-0.0.16 Rakefile
try_api-0.0.15 Rakefile
try_api-0.0.14 Rakefile
try_api-0.0.13 Rakefile
try_api-0.0.12 Rakefile
try_api-0.0.11 Rakefile
try_api-0.0.10 Rakefile
try_api-0.0.9 Rakefile
try_api-0.0.8 Rakefile
try_api-0.0.7 Rakefile
try_api-0.0.6 Rakefile