bump 0.1.1 - dependency-specs
This commit is contained in:
parent
626e4b60b3
commit
a1a8822024
6
Gemfile
6
Gemfile
|
@ -1,6 +1,2 @@
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
gem 'dencli'
|
gemspec
|
||||||
gem 'rest-client'
|
|
||||||
gem 'ipaddress'
|
|
||||||
gem 'activesupport'
|
|
||||||
gem 'pmap'
|
|
||||||
|
|
31
Gemfile.lock
31
Gemfile.lock
|
@ -1,3 +1,13 @@
|
||||||
|
PATH
|
||||||
|
remote: .
|
||||||
|
specs:
|
||||||
|
pve (0.1.1)
|
||||||
|
activesupport (>= 2)
|
||||||
|
dencli (~> 0.3.1)
|
||||||
|
ipaddress (~> 0.8.3)
|
||||||
|
pmap (~> 1.1)
|
||||||
|
rest-client (~> 2.1)
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
|
@ -9,6 +19,7 @@ GEM
|
||||||
zeitwerk (~> 2.3)
|
zeitwerk (~> 2.3)
|
||||||
concurrent-ruby (1.1.8)
|
concurrent-ruby (1.1.8)
|
||||||
dencli (0.3.1)
|
dencli (0.3.1)
|
||||||
|
diff-lcs (1.4.4)
|
||||||
domain_name (0.5.20190701)
|
domain_name (0.5.20190701)
|
||||||
unf (>= 0.0.5, < 1.0.0)
|
unf (>= 0.0.5, < 1.0.0)
|
||||||
http-accept (1.7.0)
|
http-accept (1.7.0)
|
||||||
|
@ -28,6 +39,19 @@ GEM
|
||||||
http-cookie (>= 1.0.2, < 2.0)
|
http-cookie (>= 1.0.2, < 2.0)
|
||||||
mime-types (>= 1.16, < 4.0)
|
mime-types (>= 1.16, < 4.0)
|
||||||
netrc (~> 0.8)
|
netrc (~> 0.8)
|
||||||
|
rspec (3.10.0)
|
||||||
|
rspec-core (~> 3.10.0)
|
||||||
|
rspec-expectations (~> 3.10.0)
|
||||||
|
rspec-mocks (~> 3.10.0)
|
||||||
|
rspec-core (3.10.1)
|
||||||
|
rspec-support (~> 3.10.0)
|
||||||
|
rspec-expectations (3.10.1)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.10.0)
|
||||||
|
rspec-mocks (3.10.2)
|
||||||
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
|
rspec-support (~> 3.10.0)
|
||||||
|
rspec-support (3.10.2)
|
||||||
tzinfo (2.0.4)
|
tzinfo (2.0.4)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
unf (0.1.4)
|
unf (0.1.4)
|
||||||
|
@ -39,11 +63,8 @@ PLATFORMS
|
||||||
x86_64-linux
|
x86_64-linux
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
activesupport
|
pve!
|
||||||
dencli
|
rspec (~> 3.2)
|
||||||
ipaddress
|
|
||||||
pmap
|
|
||||||
rest-client
|
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.2.15
|
2.2.15
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module PVE
|
module PVE
|
||||||
VERSION = '0.1.1'
|
VERSION = '0.1.2'
|
||||||
end
|
end
|
||||||
|
|
21
pve.gemspec
21
pve.gemspec
|
@ -4,22 +4,27 @@ Gem::Specification.new do |spec|
|
||||||
spec.name = "pve"
|
spec.name = "pve"
|
||||||
spec.version = PVE::VERSION
|
spec.version = PVE::VERSION
|
||||||
spec.authors = ["Denis Knauf"]
|
spec.authors = ["Denis Knauf"]
|
||||||
spec.email = ["git+pve@denkn.at"]
|
spec.email = ["git+pve@denkn.at"]
|
||||||
spec.licenses = ["LGPL-3.0"]
|
spec.licenses = ["LGPL-3.0"]
|
||||||
|
|
||||||
spec.summary = %q{Proxmox Virtual Environment higher level API }
|
spec.summary = %q{Proxmox Virtual Environment higher level API }
|
||||||
spec.description = %q{Provides a higher level API with objects for controlling PVE}
|
spec.description = %q{Provides a higher level API with objects for controlling PVE}
|
||||||
spec.homepage = "https://git.denkn.at/deac/pve"
|
spec.homepage = "https://git.denkn.at/deac/pve"
|
||||||
# Ruby3 interpret **opts in another way than before.
|
# Ruby3 interpret **opts in another way than before.
|
||||||
# 2.7.0 should work with both(?) behaviours.
|
# 2.7.0 should work with both(?) behaviours.
|
||||||
# PVE based on debian, so ruby 2.5 is default.
|
# PVE based on debian, so ruby 2.5 is default.
|
||||||
spec.required_ruby_version = Gem::Requirement.new "~> 2.5.0"
|
spec.required_ruby_version = Gem::Requirement.new "~> 2.5.0"
|
||||||
|
|
||||||
spec.metadata["homepage_uri"] = spec.homepage
|
spec.metadata["homepage_uri"] = spec.homepage
|
||||||
spec.metadata["source_code_uri"] = spec.homepage
|
spec.metadata["source_code_uri"] = spec.homepage
|
||||||
spec.metadata["changelog_uri"] = spec.homepage
|
spec.metadata["changelog_uri"] = spec.homepage
|
||||||
|
|
||||||
spec.add_development_dependency "rspec", "~> 3.2"
|
spec.add_dependency 'dencli', '~> 0.3.1'
|
||||||
|
spec.add_dependency 'rest-client', '~> 2.1'
|
||||||
|
spec.add_dependency 'ipaddress', '~> 0.8.3'
|
||||||
|
spec.add_dependency 'activesupport', '>= 2'
|
||||||
|
spec.add_dependency 'pmap', '~> 1.1'
|
||||||
|
spec.add_development_dependency "rspec", "~> 3.2"
|
||||||
|
|
||||||
# Specify which files should be added to the gem when it is released.
|
# Specify which files should be added to the gem when it is released.
|
||||||
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
||||||
|
|
Loading…
Reference in a new issue