dotcfg 0.2.3.1 → 0.2.4.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 +4 -4
- data/README.md +1 -1
- data/VERSION +1 -1
- data/dotcfg.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e9b88392f46fcd6f8c4acba37612095e9ef327e5
|
|
4
|
+
data.tar.gz: 786ba8222c13199a8c3d8f2a5e3d7eebab7887c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ff1b60caa3b94407922cda464fe8e932031c73a09cc872054c34780b4ccf9f7e804c44d2e0cb6bd93eb1c5859fa0a6cbc02740ba842f0cdecd9ab23f64337500
|
|
7
|
+
data.tar.gz: 87626284f04bb0f38dd6c31413d36ed252516beb0dd4805be279f89ae54ebeb58edbb2d7f5a6cb576429173bc4da16e769beccb81b16fef1c53c09c2f2974f71
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[](http://badge.fury.io/rb/dotcfg)
|
|
2
2
|
[](https://codeclimate.com/github/rickhull/dotcfg/badges)
|
|
3
3
|
[](https://gemnasium.com/rickhull/dotcfg)
|
|
4
|
-
[](https://hakiri.io/github/rickhull/dotcfg/master
|
|
4
|
+
[](https://hakiri.io/github/rickhull/dotcfg/master)
|
|
5
5
|
|
|
6
6
|
dotcfg
|
|
7
7
|
======
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.4.1
|
data/dotcfg.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ Gem::Specification.new do |s|
|
|
|
5
5
|
s.homepage = 'https://github.com/rickhull/dotcfg'
|
|
6
6
|
s.license = 'MIT'
|
|
7
7
|
s.description = 'JSON and YAML config serialization and persistence'
|
|
8
|
-
s.add_runtime_dependency 'json', '
|
|
8
|
+
s.add_runtime_dependency 'json', '>= 1'
|
|
9
9
|
s.add_development_dependency 'buildar', '~> 2'
|
|
10
10
|
|
|
11
11
|
# set version dynamically from version file contents
|
metadata
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dotcfg
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rick Hull
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-01-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '1'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - "
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '1'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
69
69
|
version: '0'
|
|
70
70
|
requirements: []
|
|
71
71
|
rubyforge_project:
|
|
72
|
-
rubygems_version: 2.
|
|
72
|
+
rubygems_version: 2.6.8
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: simple filesystem de/serialization for app configs
|