abstract_feature_branch 0.6.0 → 0.6.1
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/VERSION +1 -1
- data/abstract_feature_branch.gemspec +1 -1
- data/lib/generators/abstract_feature_branch/context_generator.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fea57f9aa274e9050c3249dec4296daada0fb745
|
|
4
|
+
data.tar.gz: 13fe5f9dea09cf4dfb1ffe47927a5937806d1c3d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 61bdeb6e46e3ab440a75f8ac3c5b191902ab06ac0979992298e5bbfed581d10318d05bf14d4efa66ddc0ebfd043054695688daf8ae069b1330c421223d949b6c
|
|
7
|
+
data.tar.gz: 46291cb6ca9892c370db7cf24a9556dae2b6bfb10a84c65a315343b57a849e6678aa8714fbd98ae14f6dde855a3f3905cb101db2670a482916b81d3087289a73
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.6.
|
|
1
|
+
0.6.1
|
|
@@ -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/#{
|
|
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"
|
|
7
7
|
def copy_config
|
|
8
8
|
template "config/features.yml", "config/features/#{file_path}.yml"
|
|
9
9
|
end
|