abstract_feature_branch 0.6.1 → 0.6.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fea57f9aa274e9050c3249dec4296daada0fb745
4
- data.tar.gz: 13fe5f9dea09cf4dfb1ffe47927a5937806d1c3d
3
+ metadata.gz: 70434039046d4abb530e0cfd2119066f020e7088
4
+ data.tar.gz: 1290d3e5b1918f2d8a0b39c80f40f760b39964ac
5
5
  SHA512:
6
- metadata.gz: 61bdeb6e46e3ab440a75f8ac3c5b191902ab06ac0979992298e5bbfed581d10318d05bf14d4efa66ddc0ebfd043054695688daf8ae069b1330c421223d949b6c
7
- data.tar.gz: 46291cb6ca9892c370db7cf24a9556dae2b6bfb10a84c65a315343b57a849e6678aa8714fbd98ae14f6dde855a3f3905cb101db2670a482916b81d3087289a73
6
+ metadata.gz: 3c407410469aced7ae3b7697a2721dd98d0286d8e625fb032aff73644e3da77ebe5d70075cb41118c35bc1e54e2c7b99ec73da205754754e0da32bd8b2660775
7
+ data.tar.gz: 024882e33b5920f5ec1eb329e60e1b281af9148f84d3a3841855a8ca7659be41084861b078c13ab72b5c82448036c564f8ce769897ae7b094071e7828eca0287
data/README.md CHANGED
@@ -31,8 +31,8 @@ Setup
31
31
  -----
32
32
 
33
33
  1. Configure Rubygem
34
- - Rails (~> 4.0.0 or ~> 3.0): Add the following to Gemfile <pre>gem 'abstract_feature_branch', '0.6.0'</pre>
35
- - Rails (~> 2.0): Add the following to config/environment.rb <pre>config.gem 'absract_feature_branch', :version => '0.6.0'</pre>
34
+ - Rails (~> 4.0.0 or ~> 3.0): Add the following to Gemfile <pre>gem 'abstract_feature_branch', '0.6.2'</pre>
35
+ - Rails (~> 2.0): Add the following to config/environment.rb <pre>config.gem 'absract_feature_branch', :version => '0.6.2'</pre>
36
36
  2. Generate <code>config/features.yml</code> and <code>config/features.local.yml</code> in your Rails app directory by running <pre>rails g abstract_feature_branch:install</pre>
37
37
  3. (Optional) Generate <code>config/features/[context_path].yml</code> in your Rails app directory by running <pre>rails g abstract_feature_branch:context context_path</pre>
38
38
 
@@ -253,7 +253,7 @@ the former if overlap in features occurs:
253
253
  Release Notes
254
254
  -------------
255
255
 
256
- Version 0.6.0:
256
+ Version 0.6.2:
257
257
  - Added a context generator and support for reading feature configuration from context files config/features/**/*.yml and config/features/**/*.local.yml
258
258
 
259
259
  Version 0.5.0:
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.1
1
+ 0.6.2
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "abstract_feature_branch"
8
- s.version = "0.6.1"
8
+ s.version = "0.6.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Annas \"Andy\" Maleh"]
@@ -3,7 +3,7 @@ module AbstractFeatureBranch
3
3
  class ContextGenerator < Rails::Generators::NamedBase
4
4
  source_root File.expand_path("../../templates", __FILE__)
5
5
 
6
- desc "Creates a configuration file for a specific application context (e.g. admin). Takes context path as argument (e.g. admin or internal/wiki) to create config/features/#{file_path}.yml"
6
+ desc "Creates a configuration file for a specific application context (e.g. admin). Takes context path as argument (e.g. admin or internal/wiki) to create config/features/[context_path].yml"
7
7
  def copy_config
8
8
  template "config/features.yml", "config/features/#{file_path}.yml"
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: abstract_feature_branch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Annas "Andy" Maleh