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.1.18 Rakefile
try_api-0.1.17 Rakefile
try_api-0.1.16 Rakefile
try_api-0.1.15 Rakefile
try_api-0.1.14 Rakefile
try_api-0.1.13 Rakefile
try_api-0.1.12 Rakefile
try_api-0.1.11 Rakefile
try_api-0.1.10 Rakefile
try_api-0.1.9 Rakefile
try_api-0.1.8 Rakefile
try_api-0.1.7 Rakefile
try_api-0.1.6 Rakefile
try_api-0.1.5 Rakefile
try_api-0.1.4 Rakefile
try_api-0.1.3 Rakefile
try_api-0.1.2 Rakefile
try_api-0.1.1 Rakefile
try_api-0.1.0 Rakefile
try_api-0.0.18 Rakefile