Sha256: 6ed01ceda619bb172d1554c5596ac57fcde7c7bddc9539e663d4536dfa6ccb6f

Contents?: true

Size: 662 Bytes

Versions: 26

Compression:

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





import 'lib/ops_tasks.rb'
Dir.glob('lib/tasks/*.rake').each { |r| import r }
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

26 entries across 26 versions & 1 rubygems

Version Path
ops_tasks-0.6.3 Rakefile
ops_tasks-0.6.2 Rakefile
ops_tasks-0.6.1 Rakefile
ops_tasks-0.6.0 Rakefile
ops_tasks-0.5.8 Rakefile
ops_tasks-0.5.7 Rakefile
ops_tasks-0.5.6 Rakefile
ops_tasks-0.5.5 Rakefile
ops_tasks-0.5.4 Rakefile
ops_tasks-0.5.2 Rakefile
ops_tasks-0.5.0 Rakefile
ops_tasks-0.4.4 Rakefile
ops_tasks-0.4.3 Rakefile
ops_tasks-0.4.2 Rakefile
ops_tasks-0.4.1 Rakefile
ops_tasks-0.4.0 Rakefile
ops_tasks-0.3.2 Rakefile
ops_tasks-0.3.0 Rakefile
ops_tasks-0.2.0 Rakefile
ops_tasks-0.1.5 Rakefile