config 1.0.0.beta3 → 1.0.0
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 +10 -0
- data/lib/config/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 35a3a84be38c9cc69e7494681c6bdddf6056dac9
|
|
4
|
+
data.tar.gz: 9694968da14389dba7ea87bd8340db43bfc78af5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ac6bea8a7e72e87304db4229311b6ea5b0cd67e96f2992e83aaef0e8cc0d6ae7c22fee9e69677ac6d08d50d0313db8ba8db2031d4244cb2ca8f3951a94f3cce
|
|
7
|
+
data.tar.gz: a0e7fd5a4fceb3523b5a5139fb3090c73aa9eca8b66343af6e7be5bf36b88d73e7c175e0bb3c159a8a1669e8b10168ddbc2681ff5134f235deb88ba45e80457e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
# 1.0.0
|
|
2
|
+
|
|
3
|
+
* `RailsConfig` is now officially renamed to `Config`
|
|
4
|
+
* Fixed array descent when converting to hash (thanks [@slicedpan](https://github.com/railsconfig/config/commit/c24d09907aeb09231586dc0914050fa7a05542e3))
|
|
5
|
+
* Catch OpenStruct reserved keywords (thanks [@dudo](https://github.com/railsconfig/config/commit/2bf3baf10590d56c6382d79e323dc11295d9e5c1))
|
|
6
|
+
* Allows loading before app configuration process (thanks [Andrey Voronkov](https://github.com/railsconfig/config/commit/8732c18d1fb9715554274543b707c1006daa50f5))
|
|
7
|
+
* `deep_merge` is now properly managed via gemspec (thanks [@firedev](https://github.com/railsconfig/config/commit/a2560bcec1a902a807d8c1766368906e5789a18e))
|
|
8
|
+
* Added `prepend_source!` (thanks [@eugenk](https://github.com/railsconfig/config/pull/102))
|
|
9
|
+
* Miscellaneous tweaks and fixes by @pkuczynski and co
|
|
10
|
+
|
|
1
11
|
# 0.5.0.beta1
|
|
2
12
|
|
|
3
13
|
* Ability to use in Settings file keywords reserved for OpenStruct: select, collect ([#95](https://github.com/railsjedi/config/issues/95))
|
data/lib/config/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jacques Crocker
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2015-08-
|
|
13
|
+
date: 2015-08-10 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: activesupport
|
|
@@ -419,9 +419,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
419
419
|
version: '0'
|
|
420
420
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
421
421
|
requirements:
|
|
422
|
-
- - "
|
|
422
|
+
- - ">="
|
|
423
423
|
- !ruby/object:Gem::Version
|
|
424
|
-
version:
|
|
424
|
+
version: '0'
|
|
425
425
|
requirements: []
|
|
426
426
|
rubyforge_project:
|
|
427
427
|
rubygems_version: 2.4.5
|