Sha256: 1f2199b8094a9aa6bb7cc3c4ff413a3bef9370fffc4faea4040b8f29bc21ef91

Contents?: true

Size: 678 Bytes

Versions: 16

Compression:

Stored size: 678 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    = 'Revelry::Core'
  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

16 entries across 16 versions & 1 rubygems

Version Path
revelry_core-0.1.6.8 Rakefile
revelry_core-0.1.6.7 Rakefile
revelry_core-0.1.6.6 Rakefile
revelry_core-0.1.6.5 Rakefile
revelry_core-0.1.6.4 Rakefile
revelry_core-0.1.6.3 Rakefile
revelry_core-0.1.6.2 Rakefile
revelry_core-0.1.6.1 Rakefile
revelry_core-0.1.5 Rakefile
revelry_core-0.1.4 Rakefile
revelry_core-0.1.3 Rakefile
revelry_core-0.1.2 Rakefile
revelry_core-0.1.1 Rakefile
revelry_core-0.1.0 Rakefile
revelry_core-0.0.1 Rakefile
revelry_core-0.0.0 Rakefile