store_request_id 0.3.0 → 0.3.1

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: 9e935d4e5000af1c0a53aa51de4ec67a34594635
4
- data.tar.gz: 1c9b8d8531dcfc2cb11cec9233c7eb917448a4e5
3
+ metadata.gz: f32d7c57feb542550922f99f40096e176baf7367
4
+ data.tar.gz: 1a8bcea35a7a4fc34f33c85521f4167d49a3222f
5
5
  SHA512:
6
- metadata.gz: 63e142fc05d8cf92704624d0b9b5e7ef6f71a10ea23b55145725226f9ff2956f6acc09aff6197ebce771071d02f4268cfa52543492c5b1092681de5eb5ff6f0f
7
- data.tar.gz: 36ff475ed9442b92f040414bcc2e96fdc1c53983cbf65e20fe8e9237a6735fdb31c43e3089368e152cf92cb8aece4bc6beb51360f519330536c0b94c35d63a26
6
+ metadata.gz: 6b038869e3c4fc17fd078d1ff770904aaa57c437d663d6e0ec0e6e2c54b783763a915407d8a27029dbbac62f631c502a3dbf99a4515de58aa827b1f7e2030b29
7
+ data.tar.gz: 53a678f679cb070f4d609a13d91101fe810e01922877e2a30257b251a9aeb1a5bda6d5e52032d393769cc55670e8340640ebc4c94fb1a4a8fa5dac2e6fa54c7f
data/CHANGELOG.md CHANGED
@@ -1,7 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## [0.3.1](https://github.com/SparkHub/gs-store-request-id/tree/v0.3.1) (2019-02-13)
4
+ [Full Changelog](https://github.com/SparkHub/gs-store-request-id/compare/v0.3.0...v0.3.1)
5
+
6
+ ** Fix error NameError: uninitialized constant StoreRequestId::BlueGreenMiddleware
7
+
3
8
  ## [0.3.0](https://github.com/SparkHub/gs-store-request-id/tree/v0.3.0) (2019-02-08)
4
- [Full Changelog](https://github.com/SparkHub/gs-store-request-id/compare/v0.1.0...v0.2.0)
9
+ [Full Changelog](https://github.com/SparkHub/gs-store-request-id/compare/v0.2.0...v0.3.0)
5
10
 
6
11
  **Implementing Blue/Green feature**
7
12
  - New Middleware to manage the Blue/Green feature:
data/README.md CHANGED
@@ -14,7 +14,7 @@ Middleware storing the unique [requestId](https://github.com/rails/rails/blob/ma
14
14
  Add this line to your application's Gemfile:
15
15
 
16
16
  ```ruby
17
- gem 'store_request_id', '~> 0.3.0'
17
+ gem 'store_request_id', '~> 0.3.1'
18
18
  ```
19
19
 
20
20
  And then execute:
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'store_request_id/middleware'
4
+ require 'store_request_id/blue_green_middleware'
4
5
 
5
6
  module StoreRequestId
6
7
  class Railtie < Rails::Railtie
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module StoreRequestId
4
- VERSION = '0.3.0'.freeze
4
+ VERSION = '0.3.1'.freeze
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: store_request_id
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guidespark
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2019-02-12 00:00:00.000000000 Z
12
+ date: 2019-02-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: actionpack