app-yml-rails 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGELOG.md +13 -0
  2. data/README.md +5 -1
  3. data/lib/app_yml/version.rb +1 -1
  4. metadata +3 -3
@@ -1,3 +1,16 @@
1
+ ## 0.1.2 (May 1, 2012)
2
+
3
+ **Other:**
4
+
5
+ - Fully tested the **Hash** and **HashWithIndifferentAccess** core extensions
6
+
7
+ ## 0.1.1 (May 1, 2012)
8
+
9
+ **Bug Fixes:**
10
+
11
+ - Fixed the `Hash.deep_update!` bug that prevented the Rails' server from booting
12
+ - Settings for a specific environment which are *not* defined in the 'all' environment are now included
13
+
1
14
  ## 0.1.0 (Apr 30, 2012)
2
15
 
3
16
  **Features:**
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # app-yml-rails
2
2
 
3
- This gem provides a Rails application with project-wide settings via an **app.yml** file.
3
+ This gem provides a Rails application with project-wide settings via an **app.yml** file. Settings can be accessed anywhere: controllers, helpers, views, models, tests, in the console, etc.
4
4
 
5
5
  ## Features
6
6
 
@@ -15,6 +15,10 @@ Add the following line to your project's **Gemfile**:
15
15
 
16
16
  gem 'app-yml-rails'
17
17
 
18
+ Install the gem using **Bundler**:
19
+
20
+ $ bundle
21
+
18
22
  Install the config and initializer files:
19
23
 
20
24
  $ rails generate app_yml:install
@@ -1,3 +1,3 @@
1
1
  module AppYml
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: app-yml-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-05-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
- requirement: &70095096241860 !ruby/object:Gem::Requirement
16
+ requirement: &70255373330240 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: '3.0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70095096241860
24
+ version_requirements: *70255373330240
25
25
  description: An awesome app.yml gem for Rails. Supports App.settings.nested_setting
26
26
  syntax, all/production/staging/development/test environments, and auto-reloads app.yml
27
27
  changes without requiring an application restart.