-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathapollo_upload_server.gemspec
More file actions
27 lines (22 loc) · 1.06 KB
/
apollo_upload_server.gemspec
File metadata and controls
27 lines (22 loc) · 1.06 KB
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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'apollo_upload_server/version'
Gem::Specification.new do |spec|
spec.name = 'apollo_upload_server'
spec.version = ApolloUploadServer::VERSION
spec.authors = ['JetRuby']
spec.email = ['engineering@jetruby.com']
spec.summary = 'Middleware which allows you to upload files using graphql and multipart/form-data.'
spec.description = 'apollo-upload-server implementation for Ruby on Rails as middleware.'
spec.homepage = 'https://github.com/jetruby/apollo_upload_server-ruby'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/}) || f == "Gemfile.lock"
end
spec.require_paths = ['lib']
spec.add_dependency 'actionpack', '>= 6.1.6'
spec.add_dependency 'graphql', '>= 1.8'
spec.add_development_dependency 'bundler', '~> 2.1'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.11'
end