hands_engine 1.0 → 1.1.0

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/hands_engine.gemspec CHANGED
@@ -18,4 +18,5 @@ Gem::Specification.new do |s|
18
18
  s.require_paths = ["lib"]
19
19
 
20
20
  s.add_development_dependency "rspec-rails", "~> 2.5.0"
21
+ s.add_runtime_dependency 'rails', '~> 3.1.0.beta1'
21
22
  end
data/lib/hands_engine.rb CHANGED
@@ -54,7 +54,7 @@ class HandsEngine < Thor::Group
54
54
  remove_file "doc"
55
55
  remove_file "log"
56
56
  remove_file "Gemfile"
57
- remove_file "public/images/rails.png"
57
+ remove_file "app/assets/images/rails.png"
58
58
  remove_file "public/index.html"
59
59
  remove_file "public/robots.txt"
60
60
  remove_file "public/javascripts/application.js"
@@ -1,3 +1,3 @@
1
1
  module HandsEngine
2
- VERSION = "1.0"
2
+ VERSION = "1.1.0"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: hands_engine
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: "1.0"
5
+ version: 1.1.0
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-09 00:00:00 -03:00
13
+ date: 2011-05-13 00:00:00 -03:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -24,6 +24,17 @@ dependencies:
24
24
  version: 2.5.0
25
25
  type: :development
26
26
  version_requirements: *id001
27
+ - !ruby/object:Gem::Dependency
28
+ name: rails
29
+ prerelease: false
30
+ requirement: &id002 !ruby/object:Gem::Requirement
31
+ none: false
32
+ requirements:
33
+ - - ~>
34
+ - !ruby/object:Gem::Version
35
+ version: 3.1.0.beta1
36
+ type: :runtime
37
+ version_requirements: *id002
27
38
  description: Create a site engine template
28
39
  email:
29
40
  - bruno.barros@hands.com.br
@@ -43,6 +54,7 @@ files:
43
54
  - lib/hands_engine.rb
44
55
  - lib/hands_engine/version.rb
45
56
  - lib/templates/root/%underscored%.gemspec.tt
57
+ - lib/templates/root/app/assets/images/%underscored%/rails.png
46
58
  - lib/templates/root/app/controllers/%underscored%/application_controller.rb.tt
47
59
  - lib/templates/root/app/controllers/%underscored%/example_controller.rb.tt
48
60
  - lib/templates/root/app/helpers/%underscored%/application_helper.rb