hands_engine 0.8.6 → 0.8.7

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.
data/README.rdoc CHANGED
@@ -6,7 +6,7 @@ Engines will be available on Rails 3.1 as the new plugin generator and invoked a
6
6
 
7
7
  == Usage
8
8
 
9
- $ hands path/ENGINE_NAME Ex: hands sites/vwvarejo
9
+ $ hands path/ENGINE_NAME Ex: hands_engine sites/vwvarejo
10
10
 
11
11
  Give --help to see supported options.
12
12
 
File without changes
@@ -1,3 +1,3 @@
1
1
  module HandsEngine
2
- VERSION = "0.8.6"
2
+ VERSION = "0.8.7"
3
3
  end
data/lib/hands_engine.rb CHANGED
@@ -43,6 +43,8 @@ class HandsEngine < Thor::Group
43
43
  remove_file "config.ru"
44
44
  remove_file "app/views/layouts/application.html.erb"
45
45
  remove_file "app/mailers"
46
+ remove_file "app/controllers/application_controller.rb"
47
+ remove_file "app/helpers/application_helper.rb"
46
48
  remove_file "config/environments"
47
49
  remove_file "config/initializers"
48
50
  remove_file "config/database.yml"
@@ -0,0 +1,2 @@
1
+ class <%= camelized %>::ApplicationController < ApplicationController
2
+ end
@@ -0,0 +1,2 @@
1
+ module <%= camelized %>::ApplicationHelper
2
+ end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: hands_engine
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.8.6
5
+ version: 0.8.7
6
6
  platform: ruby
7
7
  authors:
8
8
  - Bruno S. Barros (Hands Mobile)
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-05-05 00:00:00 -03:00
13
+ date: 2011-05-06 00:00:00 -03:00
14
14
  default_executable:
15
15
  dependencies: []
16
16
 
@@ -18,7 +18,7 @@ description: Create a site engine template
18
18
  email:
19
19
  - bruno.barros@hands.com.br
20
20
  executables:
21
- - hands
21
+ - hands_engine
22
22
  extensions: []
23
23
 
24
24
  extra_rdoc_files: []
@@ -28,12 +28,14 @@ files:
28
28
  - MIT-LICENSE
29
29
  - README.rdoc
30
30
  - Rakefile
31
- - bin/hands
31
+ - bin/hands_engine
32
32
  - hands_engine.gemspec
33
33
  - lib/hands_engine.rb
34
34
  - lib/hands_engine/version.rb
35
35
  - lib/templates/root/%underscored%.gemspec.tt
36
+ - lib/templates/root/app/controllers/%underscored%/application_controller.rb.tt
36
37
  - lib/templates/root/app/controllers/%underscored%/example_controller.rb.tt
38
+ - lib/templates/root/app/helpers/%underscored%/application_helper.rb
37
39
  - lib/templates/root/app/helpers/%underscored%/example_helper.rb.tt
38
40
  - lib/templates/root/app/models/%underscored%/example.rb.tt
39
41
  - lib/templates/root/app/views/%underscored%/example/index.html.erb