easy_app_helper 2.1.1 → 3.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: 1168a6f995f114abeab0b51069258d491692cd8e
4
- data.tar.gz: 6080ffe247cd5f60b3338a5a15864c38c67c73bf
3
+ metadata.gz: a7921784a79f4ef7f161d7d4ab52f284eac061f0
4
+ data.tar.gz: f2d910dd529a1307ee0cb43496dfd69791923756
5
5
  SHA512:
6
- metadata.gz: d3e694dbe8f1f50a2336a1210b65194490f4010ba36b724456af600a13de2ee3ea94bf3f295705b1b95670f0b36f9f013bd39b5dd34836424e2705416830a29b
7
- data.tar.gz: 1300bb54399655db63681ec5f8ac793773706ed30b7ff012f15917f17064b473036060c98b0f6969978bdd9ef998443d48592a460f3f75aec5c5a76cd9999f6a
6
+ metadata.gz: 408176be11408217af82dbb991405cc8f8edac40ca784997933aa776e3573bf873a51735ba19b5bf5a3d49e9f3e015b8f4d7c3780d14f5576c544109ee30ac67
7
+ data.tar.gz: cfd312765258009a0f9d4ddb12529182266fc02e60d5d5438b165fcfe40b2c1c40f077b59e7807331f1ed1782ec6c785ad2437709fdcddc513210946e8dc3dd0
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # EasyAppHelper v2
1
+ # EasyAppHelper v3
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
 
@@ -74,7 +74,7 @@ the way it will work. By default the logger will just log to the `File::NULL` de
74
74
  By default the `EasyAppHelper.logger` is an instance of a standard `Logger` but can specify your own using the
75
75
  `EasyAppHelper::Logger::Initializer.setup_logger` method.
76
76
 
77
- ```ruby
77
+ ```ruby gem 'stacked_config', path: '/home/laurent/devel/ruby/gems/stacked_config'
78
78
  require 'easy_app_helper'
79
79
 
80
80
  # You can directly use the logger according to the command line, or config file, flags
@@ -168,6 +168,15 @@ See [stacked_config Gem][SC] documentation for more options.
168
168
 
169
169
  ## Compatibility issues with previous versions
170
170
 
171
+ ### With version 2.x
172
+
173
+ The meaning of the `gem_layer` changed between version 3.x and 2.x (see [stacked_config][SC] which introduced this in
174
+ version 1.x). It has been basically replaced by the `executable_gem_layer`.
175
+
176
+ For standard easy_app_helper usage it should not change anything.
177
+
178
+ ### With version 1.x
179
+
171
180
  [easy_app_helper][EAH] v2.x is not fully compatible with previous branch 1.x. But for common usage it should
172
181
  nevertheless be the case.
173
182
 
@@ -24,5 +24,5 @@ Gem::Specification.new do |spec|
24
24
  spec.add_development_dependency 'rspec', '~> 3.0'
25
25
 
26
26
  spec.add_dependency 'activesupport'
27
- spec.add_runtime_dependency 'stacked_config', '~> 0.3'
27
+ spec.add_runtime_dependency 'stacked_config', '~> 1.0' , '>= 1.0.3'
28
28
  end
@@ -1,3 +1,3 @@
1
1
  module EasyAppHelper
2
- VERSION = '2.1.1'
2
+ VERSION = '3.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: 2.1.1
4
+ version: 3.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: 2015-01-11 00:00:00.000000000 Z
11
+ date: 2015-02-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -86,14 +86,20 @@ dependencies:
86
86
  requirements:
87
87
  - - ~>
88
88
  - !ruby/object:Gem::Version
89
- version: '0.3'
89
+ version: '1.0'
90
+ - - '>='
91
+ - !ruby/object:Gem::Version
92
+ version: 1.0.3
90
93
  type: :runtime
91
94
  prerelease: false
92
95
  version_requirements: !ruby/object:Gem::Requirement
93
96
  requirements:
94
97
  - - ~>
95
98
  - !ruby/object:Gem::Version
96
- version: '0.3'
99
+ version: '1.0'
100
+ - - '>='
101
+ - !ruby/object:Gem::Version
102
+ version: 1.0.3
97
103
  description: Easy Application Helpers framework
98
104
  email:
99
105
  - lbnetid+rb@gmail.com