Sha256: 0f5502ae7ba781370b913f587a1721f0ac0fc77c6f20db52747f0900c4ab3597
Contents?: true
Size: 677 Bytes
Versions: 5
Compression:
Stored size: 677 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
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
apicasso-0.2.16 | Rakefile |
apicasso-0.2.15 | Rakefile |
apicasso-0.1.5 | Rakefile |
apicasso-0.1.4 | Rakefile |
apicasso-0.1.3 | Rakefile |