Sha256: 7b68c2d5e0f2080900c424b0aabc82461a167bfb032fdf6d36ef00a0f31b4474

Contents?: true

Size: 570 Bytes

Versions: 5

Compression:

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






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

5 entries across 5 versions & 1 rubygems

Version Path
action_control-0.3 Rakefile
action_control-0.2 Rakefile
action_control-0.1 Rakefile
action_control-0.0.3 Rakefile
action_control-0.0.2 Rakefile