forked from refile/refile
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrefile.gemspec
More file actions
19 lines (15 loc) · 772 Bytes
/
refile.gemspec
File metadata and controls
19 lines (15 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require "./lib/refile/version"
Gem::Specification.new do |spec|
spec.name = "refile"
spec.version = Refile::VERSION
spec.authors = ["Jonas Nicklas", "Gabriel Sobrinho"]
spec.email = ["jonas.nicklas@gmail.com", "gabriel.sobrinho@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 "sinatra", ">= 2.0.0", "<= 3.0.0"
spec.add_dependency "mime-types"
end