bump 0.1.1 - dependency-specs

master
Denis Knauf 2021-04-21 14:50:41 +02:00
parent 626e4b60b3
commit a1a8822024
4 changed files with 41 additions and 19 deletions

View File

@ -1,6 +1,2 @@
source 'https://rubygems.org'
gem 'dencli'
gem 'rest-client'
gem 'ipaddress'
gem 'activesupport'
gem 'pmap'
gemspec

View File

@ -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
remote: https://rubygems.org/
specs:
@ -9,6 +19,7 @@ GEM
zeitwerk (~> 2.3)
concurrent-ruby (1.1.8)
dencli (0.3.1)
diff-lcs (1.4.4)
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
http-accept (1.7.0)
@ -28,6 +39,19 @@ GEM
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 4.0)
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)
concurrent-ruby (~> 1.0)
unf (0.1.4)
@ -39,11 +63,8 @@ PLATFORMS
x86_64-linux
DEPENDENCIES
activesupport
dencli
ipaddress
pmap
rest-client
pve!
rspec (~> 3.2)
BUNDLED WITH
2.2.15

View File

@ -1,3 +1,3 @@
module PVE
VERSION = '0.1.1'
VERSION = '0.1.2'
end

View File

@ -4,22 +4,27 @@ Gem::Specification.new do |spec|
spec.name = "pve"
spec.version = PVE::VERSION
spec.authors = ["Denis Knauf"]
spec.email = ["git+pve@denkn.at"]
spec.licenses = ["LGPL-3.0"]
spec.email = ["git+pve@denkn.at"]
spec.licenses = ["LGPL-3.0"]
spec.summary = %q{Proxmox Virtual Environment higher level API }
spec.description = %q{Provides a higher level API with objects for controlling PVE}
spec.homepage = "https://git.denkn.at/deac/pve"
spec.summary = %q{Proxmox Virtual Environment higher level API }
spec.description = %q{Provides a higher level API with objects for controlling PVE}
spec.homepage = "https://git.denkn.at/deac/pve"
# Ruby3 interpret **opts in another way than before.
# 2.7.0 should work with both(?) behaviours.
# PVE based on debian, so ruby 2.5 is default.
spec.required_ruby_version = Gem::Requirement.new "~> 2.5.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = spec.homepage
spec.metadata["source_code_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.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.