Sha256: a30c078e576e917bc3f93dcb77456be8842ef1b90f8e985a0bde8add4594c675

Contents?: true

Size: 672 Bytes

Versions: 12

Compression:

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

APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.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


task default: :test

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
arcadex-1.3.1 Rakefile
arcadex-1.3.0 Rakefile
arcadex-1.2.3 Rakefile
arcadex-1.2.1 Rakefile
arcadex-1.2.0 Rakefile
arcadex-1.1.3 Rakefile
arcadex-1.1.2 Rakefile
arcadex-1.1.1 Rakefile
arcadex-1.1.0 Rakefile
arcadex-1.0.4 Rakefile
arcadex-1.0.3 Rakefile
arcadex-1.0.1 Rakefile