-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpcloud.gemspec
More file actions
38 lines (32 loc) · 1.57 KB
/
pcloud.gemspec
File metadata and controls
38 lines (32 loc) · 1.57 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
28
29
30
31
32
33
34
35
36
37
38
# encoding: utf-8
require File.expand_path('../lib/pcloud/version', __FILE__)
Gem::Specification.new do |s|
s.name = "pcloud"
s.version = Pcloud::VERSION
s.platform = Gem::Platform::RUBY
s.date = Time.now.strftime('%Y-%m-%d')
s.authors = ["Rovshen Gurdov".freeze]
s.email = ["rovshen@gurdov.com".freeze]
s.homepage = "https://github.com/7urkm3n/pcloud".freeze
s.summary = %q{Secure and simple to use cloud storage for your datas...}
s.description = %q{Pcloud is cloud storage upload/download/share from pcloud.com. Please, check available methods in Github Doc...}
s.license = "MIT"
s.files = Dir["{lib}/**/*.rb", "LICENSE", "README.md", "CHANGELOG.md"]
s.require_paths = ["lib".freeze]
s.required_ruby_version = Gem::Requirement.new(">= 2.3".freeze)
s.add_dependency "forwardable", "~> 1.3.3"
s.add_dependency "json", "~> 2.6", ">= 2.6.3"
s.add_dependency "rest-client", "~> 2.0"
s.add_dependency "rubyzip", "~> 2.3"
# s.add_development_dependency "rspec", "~> 3.0"
# s.add_development_dependency "rake", "~> 10.4.2"
# s.add_development_dependency "rack", "~> 1.6.4"
s.metadata = {
"bug_tracker_uri" => "#{s.homepage.to_s}/issues",
"changelog_uri" => "#{s.homepage.to_s}/blob/master/CHANGELOG.md",
"documentation_uri" => s.homepage.to_s,
"source_code_uri" => s.homepage.to_s,
}
s.bindir = "exe"
s.executables = s.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
end