active_generator 2.2.5 → 2.2.6
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/lib/active_generator/version.rb +1 -1
- data/lib/generators/active_generator/install/templates/install.rb +1 -0
- data/lib/generators/rails/controller_generator.rb +1 -1
- data/lib/generators/rails/mailer_generator.rb +1 -1
- data/lib/generators/view/view_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: 47503d682e8ec0e743971568d2b3fbdf3e9d44a1
|
|
4
|
+
data.tar.gz: 3f59c892cd89433c60d92a561e462d275f5d6ef1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 863aafbd1e9b2f9e77086abeca500cd8cbe7fba21b8bf58f55fadee7b34a75ba836e71d598536c7b8b7784fee59b2bd229551262fdf3d7a52f900c74dfa69e10
|
|
7
|
+
data.tar.gz: 2473a006b7b821b03632651b42e30c7662bad4bf13daaf6de1248f3392025bc64c732d5bd4b55b8719bfaa3580027a5a68edf36cdd46666082d51cee7dbacb18
|
|
@@ -10,7 +10,7 @@ module Erb
|
|
|
10
10
|
end
|
|
11
11
|
|
|
12
12
|
def generate_test_file
|
|
13
|
-
unless
|
|
13
|
+
unless ActiveGenerator.configuration.test_framework.nil?
|
|
14
14
|
invoke("#{ActiveGenerator.configuration.test_framework}:view", [name]) rescue nil
|
|
15
15
|
end
|
|
16
16
|
end
|
|
@@ -10,7 +10,7 @@ module Erb
|
|
|
10
10
|
end
|
|
11
11
|
|
|
12
12
|
def generate_test_file
|
|
13
|
-
unless
|
|
13
|
+
unless ActiveGenerator.configuration.test_framework.nil?
|
|
14
14
|
invoke("#{ActiveGenerator.configuration.test_framework}:view", [name]) rescue nil
|
|
15
15
|
end
|
|
16
16
|
end
|
|
@@ -21,7 +21,7 @@ class ViewGenerator < Rails::Generators::NamedBase
|
|
|
21
21
|
end
|
|
22
22
|
|
|
23
23
|
def generate_test_file
|
|
24
|
-
unless
|
|
24
|
+
unless ActiveGenerator.configuration.test_framework.nil?
|
|
25
25
|
invoke("#{ActiveGenerator.configuration.test_framework}:view", [name]) rescue nil
|
|
26
26
|
end
|
|
27
27
|
end
|