my_generators 0.0.1 → 0.0.2
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 +1 -4
- data/my_generators.gemspec +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.2
|
data/lib/my_generators.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
module MyGenerators
|
2
2
|
module Rails
|
3
|
-
class Railtie <
|
3
|
+
class Railtie < Rails::Railtie
|
4
4
|
config.app_generators do |g|
|
5
5
|
g.orm :my_generators
|
6
6
|
g.integration_tool :my_spec
|
@@ -8,9 +8,6 @@ module MyGenerators
|
|
8
8
|
g.scaffold_controller :my_controller
|
9
9
|
g.template_engine :my_generators
|
10
10
|
end
|
11
|
-
# rake_tasks do
|
12
|
-
# load "rspec/rails/tasks/rspec.rake"
|
13
|
-
# end
|
14
11
|
end
|
15
12
|
end
|
16
13
|
end
|
data/my_generators.gemspec
CHANGED