app_config 2.7.0 → 2.7.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +5 -5
  2. data/lib/app_config/version.rb +1 -1
  3. metadata +11 -12
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 3e8bb34562d1c51420e4a75e84488b40831e88d8
4
- data.tar.gz: 83b5123812d2c423af6fc6a1fee36b2becb83f2f
2
+ SHA256:
3
+ metadata.gz: e42b69b0c41c0327bb7a7ef8dce798a36c73e3fca75716503bc3bf54c4bf78f7
4
+ data.tar.gz: f7a104ef8bece9c3eb8eee3da4eff6d014faf3e119a9713403abc03f461fa2f7
5
5
  SHA512:
6
- metadata.gz: e1a25ad0387eeba5c75a63ad83d619ebee2d2651b157a3eb12a805d32fd2678893e201cbdc582b1dfdf14259c0f92578a18511496b71c3d7bb1762088bf09dc5
7
- data.tar.gz: df48f7919ef1b0ed21adba0de4c7e05b34419f862bcd15e9a180b3943a679924a803281cc97d9ec3d838ac995d2e44e3f0e3978fffff0d60f936d153786e19a9
6
+ metadata.gz: 567581fff5192e914fc5f845dd122f7b7a5fdd172e1b1d3d547cf1da6194dece0fbda9d8b1c812e283074e2a26cc56153dbebe6dd3bd082dc3796875a339e04b
7
+ data.tar.gz: 71743128e40ca39bf090508a5eb8f610aec3001a7096d1e2c550bfa457a8a43ab66f7c13ed32bb0e6b79e98c3e115aca23d3627611591a5434a7e7d7d08b5f92
@@ -1,3 +1,3 @@
1
1
  module AppConfig
2
- VERSION = '2.7.0'
2
+ VERSION = '2.7.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: app_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.0
4
+ version: 2.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dale Campbell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-04 00:00:00.000000000 Z
11
+ date: 2019-08-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bson
@@ -156,14 +156,14 @@ dependencies:
156
156
  requirements:
157
157
  - - "~>"
158
158
  - !ruby/object:Gem::Version
159
- version: 0.9.12
159
+ version: 0.9.20
160
160
  type: :development
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
164
  - - "~>"
165
165
  - !ruby/object:Gem::Version
166
- version: 0.9.12
166
+ version: 0.9.20
167
167
  description: An easy to use, framework agnostic, customizable library to easily store
168
168
  and retrieve application configuration.
169
169
  email:
@@ -204,20 +204,19 @@ required_rubygems_version: !ruby/object:Gem::Requirement
204
204
  - !ruby/object:Gem::Version
205
205
  version: '0'
206
206
  requirements: []
207
- rubyforge_project:
208
- rubygems_version: 2.5.2.1
207
+ rubygems_version: 3.0.3
209
208
  signing_key:
210
209
  specification_version: 4
211
210
  summary: Quick and easy application configuration.
212
211
  test_files:
213
- - lib/app_config/error.rb
214
- - lib/app_config/version.rb
215
- - lib/app_config/storage/base.rb
216
- - lib/app_config/storage/postgres.rb
217
- - lib/app_config/storage/mongo.rb
218
212
  - lib/app_config/storage/yaml.rb
213
+ - lib/app_config/storage/config_data.rb
219
214
  - lib/app_config/storage/sqlite.rb
215
+ - lib/app_config/storage/base.rb
216
+ - lib/app_config/storage/mongo.rb
220
217
  - lib/app_config/storage/mysql.rb
221
- - lib/app_config/storage/config_data.rb
218
+ - lib/app_config/storage/postgres.rb
222
219
  - lib/app_config/storage.rb
220
+ - lib/app_config/error.rb
221
+ - lib/app_config/version.rb
223
222
  - lib/app_config.rb