Sha256: cd871be2136fc45cb480ff6210b7713cf53d3ec70b742b0f8e2791478e093c77
Contents?: true
Size: 630 Bytes
Versions: 3
Compression:
Stored size: 630 Bytes
Contents
require 'rubygems' require 'bundler' require 'rake/testtask' include Rake::DSL Bundler::GemHelper.install_tasks Rake::TestTask.new(:test) do |t| t.libs << "." t.test_files = FileList['test/*_test.rb'].exclude('test/s3_commands_test.rb') # A lot of the gems like right aws and amazon sdk have a bunch of warnings, so # this suppresses them for the test runs t.warning = false end desc "Run the test_server" task :test_server do |t| system("bundle exec bin/fakes3 --port 10453 --license test --root test_root --corspostputallowheaders 'Authorization, Content-Length, Cache-Control'") end task :default => :test
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fakes3-2.0.0 | Rakefile |
fakes3-1.3.1 | Rakefile |
fakes3-1.3.0 | Rakefile |