my_generators 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/my_generators.rb +7 -9
- data/my_generators.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.3
|
data/lib/my_generators.rb
CHANGED
@@ -1,13 +1,11 @@
|
|
1
1
|
module MyGenerators
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
g.template_engine :my_generators
|
10
|
-
end
|
2
|
+
class Railtie < Rails::Railtie
|
3
|
+
config.app_generators do |g|
|
4
|
+
g.orm :my_generators
|
5
|
+
g.integration_tool :my_spec
|
6
|
+
g.test_framework :my_spec
|
7
|
+
g.scaffold_controller :my_controller
|
8
|
+
g.template_engine :my_generators
|
11
9
|
end
|
12
10
|
end
|
13
11
|
end
|
data/my_generators.gemspec
CHANGED