Sha256: c118784e8c9574a2d6da29dc881f0c61ca8041d19994d09497531beb4b0b3f17

Contents?: true

Size: 701 Bytes

Versions: 13

Compression:

Stored size: 701 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    = 'Mascot'
  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", __FILE__)
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 << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end


task default: :test

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
mascot-rails-0.1.16 Rakefile
mascot-rails-0.1.15 Rakefile
mascot-rails-0.1.14 Rakefile
mascot-rails-0.1.12 Rakefile
mascot-rails-0.1.11 Rakefile
mascot-rails-0.1.10 Rakefile
mascot-rails-0.1.9 Rakefile
mascot-rails-0.1.8 Rakefile
mascot-rails-0.1.7 Rakefile
mascot-rails-0.1.6 Rakefile
mascot-rails-0.1.5 Rakefile
mascot-rails-0.1.4 Rakefile
mascot-rails-0.1.3 Rakefile