Sha256: 9b3cb91999364f8f521137f09cdd95f0241e753569286eaef353db30fb7bc4ad

Contents?: true

Size: 669 Bytes

Versions: 25

Compression:

Stored size: 669 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    = "S3Relay"
  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

Version data entries

25 entries across 25 versions & 3 rubygems

Version Path
s3_relay-0.7.0 Rakefile
s3_relay-0.6.2 Rakefile
s3_relay-0.6.1 Rakefile
mongoid-direct-s3-upload-0.1.7 Rakefile
mongoid-direct-s3-upload-0.1.6 Rakefile
mongoid-direct-s3-upload-0.1.5 Rakefile
mongoid-direct-s3-upload-0.1.4 Rakefile
mongoid-direct-s3-upload-0.1.3 Rakefile
mongoid-direct-s3-upload-0.1.2 Rakefile
mongoid-direct-s3-upload-0.1.1 Rakefile
mongoid-direct-s3-upload-0.1.0 Rakefile
mongoid_direct_s3_upload-0.1.0 Rakefile
s3_relay-0.6.0 Rakefile
s3_relay-0.5.1 Rakefile
s3_relay-0.5.0 Rakefile
s3_relay-0.4.2 Rakefile
s3_relay-0.4.1 Rakefile
s3_relay-0.4.0 Rakefile
s3_relay-0.3.2 Rakefile
s3_relay-0.3.1 Rakefile