Initial commit
parents
Showing
.gitignore
0 → 100644
CODE_OF_CONDUCT.md
0 → 100644
Gemfile
0 → 100644
source "https://rubygems.org" | ||
gemspec | ||
gem "pry" | ||
gem "puma" | ||
gem "tilt" |
LICENSE.txt
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
lib/shrine/plugins/uppy_s3_multipart.rb
0 → 100644
lib/uppy-s3_multipart.rb
0 → 100644
lib/uppy/s3_multipart.rb
0 → 100644
lib/uppy/s3_multipart/app.rb
0 → 100644
lib/uppy/s3_multipart/client.rb
0 → 100644
test/app_test.rb
0 → 100644
This diff is collapsed.
Click to expand it.
test/client_test.rb
0 → 100644
test/shrine_test.rb
0 → 100644
test/test_helper.rb
0 → 100644
uppy-s3_multipart.gemspec
0 → 100644
Gem::Specification.new do |gem| | ||
gem.name = "uppy-s3_multipart" | ||
gem.version = "0.1.0" | ||
gem.required_ruby_version = ">= 2.2" | ||
gem.summary = "Provides a Rack application that implements endpoints for the AwsS3Multipart Uppy plugin." | ||
gem.homepage = "https://github.com/janko-m/uppy-s3_multipart" | ||
gem.authors = ["Janko Marohnić"] | ||
gem.email = ["janko.marohnic@gmail.com"] | ||
gem.license = "MIT" | ||
gem.files = Dir["README.md", "LICENSE.txt", "lib/**/*.rb", "*.gemspec"] | ||
gem.require_path = "lib" | ||
gem.add_dependency "roda", ">= 2.27", "< 4" | ||
gem.add_dependency "aws-sdk-s3", "~> 1.0" | ||
gem.add_development_dependency "rake" | ||
gem.add_development_dependency "minitest" | ||
gem.add_development_dependency "rack-test_app" | ||
gem.add_development_dependency "shrine", "~> 2.0" | ||
gem.add_development_dependency "aws-sdk-core", "~> 3.23" | ||
end |
Please
register
or
sign in
to comment