S3 and Swift now run the same specs. The only difference is the before block that defines the stubbed HTTP requests and the responses from the Swift and S3 servers
25 lines
549 B
Ruby
25 lines
549 B
Ruby
source "https://rubygems.org"
|
|
|
|
gem "sinatra"
|
|
gem "sinatra-contrib"
|
|
gem "activesupport"
|
|
gem "rest-client", "~> 2.1.0.rc1" # Fixes a memory leak in Ruby 2.4
|
|
gem "redis"
|
|
# Remove require when we can update to 3.0, which sets the new storage
|
|
# format to columnar by default. Increases performance
|
|
gem "mime-types"
|
|
|
|
group :test do
|
|
gem 'rake'
|
|
gem 'rack-test'
|
|
gem 'purdytest', :require => false
|
|
gem 'm'
|
|
gem 'minitest-stub_any_instance'
|
|
gem 'webmock'
|
|
end
|
|
|
|
group :staging, :production do
|
|
gem "rainbows"
|
|
gem "sentry-raven", require: false
|
|
end
|