config_server_agent 0.3.1 → 0.3.2
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 +4 -4
- data/CHANGELOG.md +5 -1
- data/bitbucket-pipelines.yml +32 -0
- data/config_server_agent.gemspec +1 -0
- data/lib/config_server_agent/version.rb +1 -1
- metadata +17 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fb1b769259fb7189177bd402f82f6b2cf8edfd9589309b23bac26675f84e42c3
|
|
4
|
+
data.tar.gz: 6327a422262661e45aceb0cf1974a9a2a13832a768179b5f92f31cdc6d3b697d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44c78e537c2f6cdb35ebc961197e28b99960506800ea2ab1453c07c0b7d9876750cbe4b163b802013457b2ec82a31aba0add57a1e4b3a8ec1bf81efd6cbb99af
|
|
7
|
+
data.tar.gz: 923887e25fb70e6566158926f520d1a48b4c81eac847cd47e8b60a75c0211ed7ff15de126c30d86852a34034dbf92c3331e5a302febde633f235f4be193e30fa
|
data/CHANGELOG.md
CHANGED
|
@@ -4,12 +4,16 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## 0.3.2 - 2019-02-27
|
|
8
|
+
### Changed
|
|
9
|
+
- Added bundler-audit to CI/CD pipeline
|
|
10
|
+
|
|
7
11
|
## 0.3.1 - 2019-02-27
|
|
8
12
|
### Changed
|
|
9
13
|
- Fixed a failing unit test
|
|
10
14
|
|
|
11
15
|
## 0.3.0 - 2019-02-27
|
|
12
|
-
###
|
|
16
|
+
### Added
|
|
13
17
|
- Added the ConfigServerAgent#set_config method
|
|
14
18
|
|
|
15
19
|
## 0.2.0 - 2019-02-11
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
image: ruby:2.6
|
|
2
|
+
|
|
3
|
+
pipelines:
|
|
4
|
+
pull-requests:
|
|
5
|
+
'**':
|
|
6
|
+
- step:
|
|
7
|
+
name: Run unit tests
|
|
8
|
+
caches:
|
|
9
|
+
- bundler
|
|
10
|
+
script:
|
|
11
|
+
- bundle install
|
|
12
|
+
- bundle audit check --update
|
|
13
|
+
- rake test
|
|
14
|
+
tags:
|
|
15
|
+
release-*:
|
|
16
|
+
- step:
|
|
17
|
+
name: Test and publish
|
|
18
|
+
caches:
|
|
19
|
+
- bundler
|
|
20
|
+
script:
|
|
21
|
+
- bundle install
|
|
22
|
+
- bundle audit check --update
|
|
23
|
+
- rake test
|
|
24
|
+
- mkdir -p /root/.gem
|
|
25
|
+
- touch /root/.gem/credentials
|
|
26
|
+
- chmod 0600 /root/.gem/credentials
|
|
27
|
+
- 'printf -- "---\n:rubygems_api_key: $GEM_HOST_API_KEY\n" > /root/.gem/credentials'
|
|
28
|
+
- rake build release:rubygem_push
|
|
29
|
+
|
|
30
|
+
definitions:
|
|
31
|
+
caches:
|
|
32
|
+
bundler: /usr/local/bundle
|
data/config_server_agent.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: config_server_agent
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aidan Samuel
|
|
@@ -80,6 +80,20 @@ dependencies:
|
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '2.0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: bundler-audit
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0.6'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0.6'
|
|
83
97
|
description: " Use this client to retrieve your configuration from a Config Server.
|
|
84
98
|
The required parameters can either be supplied to the constructor, or they will
|
|
85
99
|
be pulled from environment variables. An ArgumentError will be raised if the parameters
|
|
@@ -99,6 +113,7 @@ files:
|
|
|
99
113
|
- LICENSE.txt
|
|
100
114
|
- README.md
|
|
101
115
|
- Rakefile
|
|
116
|
+
- bitbucket-pipelines.yml
|
|
102
117
|
- config_server_agent.gemspec
|
|
103
118
|
- lib/config_server_agent.rb
|
|
104
119
|
- lib/config_server_agent/version.rb
|
|
@@ -125,8 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
125
140
|
- !ruby/object:Gem::Version
|
|
126
141
|
version: '0'
|
|
127
142
|
requirements: []
|
|
128
|
-
|
|
129
|
-
rubygems_version: 2.7.6
|
|
143
|
+
rubygems_version: 3.0.1
|
|
130
144
|
signing_key:
|
|
131
145
|
specification_version: 4
|
|
132
146
|
summary: A thread-safe caching client for Config Server
|