easy_app_helper 3.0.13 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f07c721f79ca6d5acd24ca23de0b3fbea41a675f
4
- data.tar.gz: 1c1cc5427495a0174419b3fd6923b594ba1be831
3
+ metadata.gz: ba5581b07d246aea15da1240a92311edd5c6d56a
4
+ data.tar.gz: c53b9c8cc7093d440c0d3def6bce7c1b9e56cb93
5
5
  SHA512:
6
- metadata.gz: 3acd559c213cd9f5de644c6cb4872a57b9df6a0477469a615c0632b0b8ea63eed57083dc9ff878b95502991e5b28a93bef582bb081635b330feb7f6663e3f7c3
7
- data.tar.gz: 04edcc481d74e0632fe0c426386db21f9dd3f80a256806ad5ace077d3c529361789e0ce9f9c63d61e802ae09797ac31ca9d5c0f8e8691d10ea6f631248fe68e2
6
+ metadata.gz: 060bfb6ac3f61d5ad1a84a07b2343bb4e7c7d75eb69459d4ff9849782753f7b7610f7dec2b57a452ed9f14384a8fce67dc93f61c673446cd16726827c8a2c9b3
7
+ data.tar.gz: 7f96cc1c4935a0d54b8dbd171371b2435920e81d4133d682394101f9ca31f70ed485be41ece84b0811e5bb78812fcfe5a790ebd9b49ded2b5c1a22c498eb1085
data/.travis.yml CHANGED
@@ -1,6 +1,5 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.0.0-p648
4
3
  - 2.2.4
5
4
  script:
6
5
  - bundle exec rspec -f d 2> /dev/null
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # EasyAppHelper v3
1
+ # EasyAppHelper v4
2
2
  [![Build Status](https://travis-ci.org/lbriais/easy_app_helper.svg)](https://travis-ci.org/lbriais/easy_app_helper)
3
3
  [![Gem Version](https://badge.fury.io/rb/easy_app_helper.svg)](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', '~> 3.0'
39
+ gem 'easy_app_helper', '~> 4.0'
29
40
 
30
41
  And then execute:
31
42
 
@@ -24,5 +24,5 @@ Gem::Specification.new do |spec|
24
24
  spec.add_development_dependency 'rspec'
25
25
 
26
26
  spec.add_dependency 'activesupport'
27
- spec.add_runtime_dependency 'stacked_config', '~> 1.2.2'
27
+ spec.add_runtime_dependency 'stacked_config', '~> 2.0.0'
28
28
  end
@@ -1,3 +1,3 @@
1
1
  module EasyAppHelper
2
- VERSION = '3.0.13'
2
+ VERSION = '4.0.0'
3
3
  end
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: 3.0.13
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-09 00:00:00.000000000 Z
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: 1.2.2
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: 1.2.2
96
+ version: 2.0.0
97
97
  description: Easy Application Helpers framework
98
98
  email:
99
99
  - lbnetid+rb@gmail.com