puppet_forge 2.1.5 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4c540e2e0483e80b517b23ef6a5160d30173e302
4
- data.tar.gz: 0d5de65b3c5654e78459d03efdf33368834848dd
3
+ metadata.gz: 97687f6157b82d3048b866e0a0922c2eb4888daf
4
+ data.tar.gz: 01c8af2de5a93f1cd35fd8554ad2c87f24f3c3b9
5
5
  SHA512:
6
- metadata.gz: 8662c9f01abfd72337a3b0bea60157b7d33487b8de862be41e705de6f343d05eb8477432a827fcf99688b9a32ce5a6cf850a9362601c7211d6cf808652f9f1f5
7
- data.tar.gz: f91538968a8fa53c87236b54d029f6dd549d68887c6fdc3e1bd1468ee7f9ac66789e4ffc6a64bea29a72d842abe39953d00b80c459f32cb20af024d57c3efcfc
6
+ metadata.gz: e14480b678895fad971e15fc5f4a93f3f33840f4a7ebc3b94452aed05e5dfa631a78c793a707892bb38ac857fd6da4894850475eeaff16485146539459e8265b
7
+ data.tar.gz: 33d37f9f5073242c3bffa522dd360c3116352025411d08709fbd14ef2d05a544c858a144e56f1d8301034e5d33100c6ab5ebd076e4847624f30dda0f0394d3f9
@@ -3,6 +3,14 @@
3
3
  Starting with v2.0.0, all notable changes to this project will be documented in this file.
4
4
  This project adheres to [Semantic Versioning](http://semver.org/).
5
5
 
6
+ ## v2.2.0 - 2016-05-10
7
+
8
+ ### Changed
9
+
10
+ * puppet\_forge's optional dependency on Typhoeus now searches for a gem matching '~> 1.0.1' so it will pick up more recent versions.
11
+ NOTE: This means if you have a version of Typhoeus installed that is less than 1.0.1, puppet\_forge will no longer use the Typhoeus
12
+ adapter and will fall back to Ruby's Net::HTTP library.
13
+
6
14
  ## v2.1.5 - 2016-04-13
7
15
 
8
16
  ### Added
@@ -70,7 +70,7 @@ module PuppetForge
70
70
 
71
71
  begin
72
72
  # Use Typhoeus if available.
73
- Gem::Specification.find_by_name('typhoeus', '~> 0.6')
73
+ Gem::Specification.find_by_name('typhoeus', '~> 1.0.1')
74
74
  require 'typhoeus/adapters/faraday'
75
75
  adapter = :typhoeus
76
76
  rescue Gem::LoadError
@@ -1,3 +1,3 @@
1
1
  module PuppetForge
2
- VERSION = '2.1.5' # Library version
2
+ VERSION = '2.2.0' # Library version
3
3
  end
@@ -32,4 +32,8 @@ Gem::Specification.new do |spec|
32
32
  spec.add_development_dependency "cane"
33
33
  spec.add_development_dependency "yard"
34
34
  spec.add_development_dependency "redcarpet"
35
+
36
+ # Install the right pry debugging combo depending on ruby version.
37
+ spec.add_development_dependency "pry-debugger" if RUBY_VERSION <= '1.9.3'
38
+ spec.add_development_dependency "pry-byebug" if RUBY_VERSION >= '2.0.0'
35
39
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puppet_forge
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.5
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet Labs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-13 00:00:00.000000000 Z
11
+ date: 2016-05-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -170,6 +170,20 @@ dependencies:
170
170
  - - ">="
171
171
  - !ruby/object:Gem::Version
172
172
  version: '0'
173
+ - !ruby/object:Gem::Dependency
174
+ name: pry-byebug
175
+ requirement: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - ">="
178
+ - !ruby/object:Gem::Version
179
+ version: '0'
180
+ type: :development
181
+ prerelease: false
182
+ version_requirements: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - ">="
185
+ - !ruby/object:Gem::Version
186
+ version: '0'
173
187
  description: Tools that can be used to access Forge API information on Modules, Users,
174
188
  and Releases. As well as download, unpack, and install Releases to a directory.
175
189
  email: