puppet_webhook 1.5.2 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +22 -0
  3. data/bin/puppet_webhook +1 -1
  4. metadata +30 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7f3451d52653764b10cebb1f14ad0ae809424236
4
- data.tar.gz: e8032a9dcfea398560a6287ff633da4cba8b3a45
3
+ metadata.gz: 1ab0420877a39df37050f5f447732fe31880d4d6
4
+ data.tar.gz: 5fc590384eda5639cbbe0d585c89d3194d7996aa
5
5
  SHA512:
6
- metadata.gz: 81723a19aad80a1a2ee1444066d589bec0066d3fd9588e094f5aaba7283a159e5256397b06d056303aed9fcd513bf0eb0f66431c3030bb99c03d55b66c9515c8
7
- data.tar.gz: f634ffd28d33e10c9f3662829a8476c0814b2ae1f4f9d94632b8010c489315effa5df28491208422f405dab9e7882509e1b5bccae50953f25d85776a88541600
6
+ metadata.gz: 1b5e499a0cb3e3cfefc770befaed4cc610cffbef4c925fcffc6dfa178d0dda72a73782e105b41f3baf7f02bc9a50aead3569d7957662ebae45a3c083e216c192
7
+ data.tar.gz: a9d565e1ced47e98b9e413938e380646842e53a1e2827ecb5733708ca6cc12d3e545425084759259e0aba835666d0b9bcdcd9545ef101d04af6c3bda35fecace
data/CHANGELOG.md CHANGED
@@ -4,6 +4,28 @@ All notable changes to this project will be documented in this file.
4
4
  Each new release typically also includes the latest modulesync defaults.
5
5
  These should not affect the functionality of the module.
6
6
 
7
+ ## [v1.6.0](https://github.com/voxpupuli/puppet_webhook/tree/v1.6.0) (2018-12-19)
8
+ [Full Changelog](https://github.com/voxpupuli/puppet_webhook/compare/v1.5.2...v1.6.0)
9
+
10
+ **Implemented enhancements:**
11
+
12
+ - Add Sidekiq support [\#75](https://github.com/voxpupuli/puppet_webhook/issues/75)
13
+ - Add Tests for the application [\#8](https://github.com/voxpupuli/puppet_webhook/issues/8)
14
+
15
+ **Fixed bugs:**
16
+
17
+ - Logging settings don't work properly [\#77](https://github.com/voxpupuli/puppet_webhook/issues/77)
18
+
19
+ **Closed issues:**
20
+
21
+ - Build RPM/DEB/Arch Packages [\#25](https://github.com/voxpupuli/puppet_webhook/issues/25)
22
+ - Documentation [\#9](https://github.com/voxpupuli/puppet_webhook/issues/9)
23
+
24
+ **Merged pull requests:**
25
+
26
+ - Ensure that loglevel is using the const value [\#78](https://github.com/voxpupuli/puppet_webhook/pull/78) ([dhollinger](https://github.com/dhollinger))
27
+ - Add Sidekiq support [\#76](https://github.com/voxpupuli/puppet_webhook/pull/76) ([dhollinger](https://github.com/dhollinger))
28
+
7
29
  ## [v1.5.2](https://github.com/voxpupuli/puppet_webhook/tree/v1.5.2) (2018-11-02)
8
30
  [Full Changelog](https://github.com/voxpupuli/puppet_webhook/compare/v1.5.1...v1.5.2)
9
31
 
data/bin/puppet_webhook CHANGED
@@ -87,7 +87,7 @@ if @server_config
87
87
  ssl_opts[:ssl_key] = settings.enable_ssl if settings.respond_to? :ssl_key=
88
88
  end
89
89
 
90
- LOGGER = WEBrick::Log.new(options[:logfile], options[:loglevel])
90
+ LOGGER = WEBrick::Log.new(options[:logfile], Object.const_get("WEBrick::Log::#{options[:loglevel]}"))
91
91
 
92
92
  webrick_opts = {
93
93
  Host: options[:host],
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puppet_webhook
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.2
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vox Pupuli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-11-02 00:00:00.000000000 Z
11
+ date: 2018-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: sidekiq
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: sinatra
57
71
  requirement: !ruby/object:Gem::Requirement
@@ -220,6 +234,20 @@ dependencies:
220
234
  - - ">="
221
235
  - !ruby/object:Gem::Version
222
236
  version: '0'
237
+ - !ruby/object:Gem::Dependency
238
+ name: rspec-sidekiq
239
+ requirement: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - ">="
242
+ - !ruby/object:Gem::Version
243
+ version: '0'
244
+ type: :development
245
+ prerelease: false
246
+ version_requirements: !ruby/object:Gem::Requirement
247
+ requirements:
248
+ - - ">="
249
+ - !ruby/object:Gem::Version
250
+ version: '0'
223
251
  - !ruby/object:Gem::Dependency
224
252
  name: rubocop
225
253
  requirement: !ruby/object:Gem::Requirement