forked from sforma/refile
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrefile.gemspec
More file actions
20 lines (16 loc) · 768 Bytes
/
refile.gemspec
File metadata and controls
20 lines (16 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require "./lib/refile/version"
Gem::Specification.new do |spec|
spec.name = "refile"
spec.version = Refile::VERSION
spec.authors = ["Jonas Nicklas"]
spec.email = ["jonas.nicklas@gmail.com"]
spec.summary = "Simple and powerful file upload library"
spec.homepage = "https://github.com/refile/refile"
spec.license = "MIT"
spec.files = `git ls-files lib spec app config Readme.md`.split($/).reject { |f| f.include?("test_app") }
spec.require_paths = %w[lib spec] # spec is used by backend gems to run their tests
spec.required_ruby_version = ">= 2.1.0"
spec.add_dependency "rest-client", "~> 2.0"
spec.add_dependency "sinatra", ">= 2.0.0", "<= 3.0.0"
spec.add_dependency "mime-types"
end