Sha256: 8e049134782e154fd93c6546b6a874c74e1eb0f6202f6fe93a3b55db02b18b46

Contents?: true

Size: 693 Bytes

Versions: 24

Compression:

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

APP_RAKEFILE = File.expand_path("../spec/testapp/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

24 entries across 24 versions & 1 rubygems

Version Path
phcscriptcdn-2.0.4 Rakefile
phcscriptcdn-2.0.3 Rakefile
phcscriptcdn-2.0.1 Rakefile
phcscriptcdn-2.0.0 Rakefile