Sha256: a93a08c06e48bbf781daa9fc7fdb7b894d3998dd75102dd23bf0f9849de5155a

Contents?: true

Size: 589 Bytes

Versions: 10

Compression:

Stored size: 589 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    = 'G5SiblingDeployerEngine'
  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

10 entries across 10 versions & 1 rubygems

Version Path
g5_sibling_deployer_engine-0.7.0 Rakefile
g5_sibling_deployer_engine-0.6.3 Rakefile
g5_sibling_deployer_engine-0.6.2 Rakefile
g5_sibling_deployer_engine-0.6.1 Rakefile
g5_sibling_deployer_engine-0.5.0 Rakefile
g5_sibling_deployer_engine-0.4.2 Rakefile
g5_sibling_deployer_engine-0.4.1 Rakefile
g5_sibling_deployer_engine-0.4.0 Rakefile
g5_sibling_deployer_engine-0.3.3 Rakefile
g5_sibling_deployer_engine-0.3.2 Rakefile