Sha256: 20972ce1f218c53e1776e8f5194f5fe5862573a856e6b9e1bbef8093e17f7a16

Contents?: true

Size: 709 Bytes

Versions: 23

Compression:

Stored size: 709 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    = 'Apicasso'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
load 'rails/tasks/engine.rake'

load 'rails/tasks/statistics.rake'

require 'bundler/gem_tasks'

require 'rake/testtask'

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

task default: :test

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
apicasso-0.3.3 Rakefile
apicasso-0.3.2 Rakefile
apicasso-0.3.1 Rakefile
apicasso-0.3.0 Rakefile
apicasso-0.2.14 Rakefile
apicasso-0.2.13 Rakefile
apicasso-0.2.12 Rakefile
apicasso-0.2.11 Rakefile
apicasso-0.2.10 Rakefile
apicasso-0.2.9 Rakefile
apicasso-0.2.8 Rakefile
apicasso-0.2.7 Rakefile
apicasso-0.2.6 Rakefile
apicasso-0.2.5 Rakefile
apicasso-0.2.4 Rakefile
apicasso-0.2.3 Rakefile
apicasso-0.2.2 Rakefile
apicasso-0.2.1 Rakefile
apicasso-0.2.0 Rakefile
apicasso-0.1.6 Rakefile