easy_app_helper 3.0.13 → 4.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/.travis.yml +0 -1
- data/README.md +13 -2
- data/easy_app_helper.gemspec +1 -1
- data/lib/easy_app_helper/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: ba5581b07d246aea15da1240a92311edd5c6d56a
|
|
4
|
+
data.tar.gz: c53b9c8cc7093d440c0d3def6bce7c1b9e56cb93
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 060bfb6ac3f61d5ad1a84a07b2343bb4e7c7d75eb69459d4ff9849782753f7b7610f7dec2b57a452ed9f14384a8fce67dc93f61c673446cd16726827c8a2c9b3
|
|
7
|
+
data.tar.gz: 7f96cc1c4935a0d54b8dbd171371b2435920e81d4133d682394101f9ca31f70ed485be41ece84b0811e5bb78812fcfe5a790ebd9b49ded2b5c1a22c498eb1085
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# EasyAppHelper
|
|
1
|
+
# EasyAppHelper v4
|
|
2
2
|
[](https://travis-ci.org/lbriais/easy_app_helper)
|
|
3
3
|
[](http://badge.fury.io/rb/easy_app_helper)
|
|
4
4
|
|
|
@@ -21,11 +21,22 @@ and as unobtrusive as possible (you choose when you want to include or use as a
|
|
|
21
21
|
a ready-for-prod config, logger and command line management.
|
|
22
22
|
|
|
23
23
|
|
|
24
|
+
:warning: Versions prior to `4.0.0` were trying to give an indifferent access to the merged config for strings
|
|
25
|
+
and symbols, ie `EasyAppHelper.config[:an_entry]` was giving the same result as `EasyAppHelper.config['an_entry']`.
|
|
26
|
+
|
|
27
|
+
This is clearly wrong and not consistent everywhere and
|
|
28
|
+
__starting with version `4.0.0` this is no more the case__. Please check [stacked_config](https://github.com/lbriais/stacked_config/blob/master/README.md#between-version-1x-and-2x)
|
|
29
|
+
for more information. If you want to keep previous behaviour you should specify to continue using the old version
|
|
30
|
+
using the '~> 3.0' operator (also known as the
|
|
31
|
+
[pessimistic version constraint](http://guides.rubygems.org/patterns/#pessimistic-version-constraint)).
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
24
35
|
## Installation
|
|
25
36
|
|
|
26
37
|
Add this line to your application's Gemfile:
|
|
27
38
|
|
|
28
|
-
gem 'easy_app_helper', '~>
|
|
39
|
+
gem 'easy_app_helper', '~> 4.0'
|
|
29
40
|
|
|
30
41
|
And then execute:
|
|
31
42
|
|
data/easy_app_helper.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: easy_app_helper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 4.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- L.Briais
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-07-
|
|
11
|
+
date: 2016-07-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -86,14 +86,14 @@ dependencies:
|
|
|
86
86
|
requirements:
|
|
87
87
|
- - "~>"
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version:
|
|
89
|
+
version: 2.0.0
|
|
90
90
|
type: :runtime
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
94
|
- - "~>"
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version:
|
|
96
|
+
version: 2.0.0
|
|
97
97
|
description: Easy Application Helpers framework
|
|
98
98
|
email:
|
|
99
99
|
- lbnetid+rb@gmail.com
|