forked from yunixon/s3_relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
s3_relay.gemspec
27 lines (22 loc) · 1.13 KB
/
s3_relay.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
$:.push File.expand_path("../lib", __FILE__)
require "s3_relay/version"
Gem::Specification.new do |s|
s.name = "s3_relay"
s.version = S3Relay::VERSION
s.authors = ["Kenny Johnston"]
s.email = ["kjohnston.ca@gmail.com"]
s.homepage = "http://github.com/kjohnston/s3_relay"
s.summary = "Direct uploads to S3 and ingestion by your Rails app."
s.description = "Enables direct file uploads to Amazon S3 and provides a flexible pattern for your Rails app to asynchronously ingest the files."
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_runtime_dependency "coffee-rails"
s.add_runtime_dependency "rails", ">= 5.0"
s.add_runtime_dependency "addressable", ">= 2.5.2" # URI.encode replacement
s.add_development_dependency "minitest-rails", "~> 5.2", ">= 5.2.0"
s.add_development_dependency "mocha", "~> 1.11", ">= 1.11.2"
s.add_development_dependency "pg", "~> 1.2", ">= 1.2.3"
s.add_development_dependency "simplecov", "~> 0.20", ">= 0.20.0"
s.add_development_dependency "thor" # Bundler requirement
end