-
Notifications
You must be signed in to change notification settings - Fork 1
/
my-local-putio.gemspec
30 lines (25 loc) · 1.28 KB
/
my-local-putio.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
28
29
30
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "my-local-putio/version"
Gem::Specification.new do |spec|
spec.name = "my-local-putio"
spec.version = MyLocalPutio::VERSION
spec.authors = ["Rafael Biriba"]
spec.email = ["[email protected]"]
spec.summary = "The easiest script to synchronise all your put.io files locally."
spec.description = "The easiest script to synchronise all your put.io files locally."
spec.homepage = "https://github.com/rafaelbiriba/my-local-putio"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/rafaelbiriba/my-local-putio"
spec.metadata["changelog_uri"] = "https://github.com/rafaelbiriba/my-local-putio/blob/master/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 2.3"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_dependency "socksify", "1.7.1"
end