Sha256: a79743b6cb46ee3d24070338c8e08a95781ba42cec204792959558f0cd1e0f3c

Contents?: true

Size: 593 Bytes

Versions: 1

Compression:

Stored size: 593 Bytes

Contents

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

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

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

require 'yard'
YARD::Rake::YardocTask.new do |t|
  t.files   = ['app/**/*.rb', 'config/**/*.rb', 'lib/**/*.rb']
end

task default: :test

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cogy-0.1.0 Rakefile