Sha256: 1fc591c08ba5bfdfe65a9fa56a75097c00667b92cb8eda93d342fd0df7f9da68
Contents?: true
Size: 706 Bytes
Versions: 2
Compression:
Stored size: 706 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 = 'BcmsS3' 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 load 'lib/tasks/module_tasks.rake'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bcms_aws_s3-artirix-4.0.1 | Rakefile |
bcms_aws_s3-artirix-4.0.0.rc1.art4 | Rakefile |