hands_engine 1.2.2 → 1.3.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,5 +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
+ s.add_runtime_dependency 'rails', '~> 3.0.7'
22
22
  end
@@ -1,3 +1,3 @@
1
1
  module HandsEngine
2
- VERSION = "1.2.2"
2
+ VERSION = "1.3.0"
3
3
  end
data/lib/hands_engine.rb CHANGED
@@ -75,9 +75,15 @@ class HandsEngine < Thor::Group
75
75
  remove_file "doc"
76
76
  remove_file "log"
77
77
  remove_file "Gemfile"
78
- remove_file "app/assets/images/rails.png"
78
+ remove_file "public/javascripts"
79
+ remove_file "public/images/rails.png"
79
80
  remove_file "public/index.html"
80
81
  remove_file "public/robots.txt"
82
+ remove_file "public/javascripts/controls.js"
83
+ remove_file "public/javascripts/dragdrop.js"
84
+ remove_file "public/javascripts/effects.js"
85
+ remove_file "public/javascripts/prototype.js"
86
+ remove_file "public/javascripts/rails.js"
81
87
  remove_file "README"
82
88
  remove_file "script"
83
89
  remove_file "tmp"
@@ -87,9 +93,6 @@ class HandsEngine < Thor::Group
87
93
 
88
94
  if themes?
89
95
  inside path do
90
- remove_file "app/assets/javascripts/script.js"
91
- remove_file "app/assets/javascripts/application.js"
92
- remove_file "app/assets/stylesheets/application.css"
93
96
  remove_file "app/controllers"
94
97
  remove_file "app/helpers"
95
98
  remove_file "app/models"
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: hands_engine
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.2.2
5
+ version: 1.3.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-17 00:00:00 -03:00
13
+ date: 2011-05-18 00:00:00 -03:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -32,7 +32,7 @@ dependencies:
32
32
  requirements:
33
33
  - - ~>
34
34
  - !ruby/object:Gem::Version
35
- version: 3.1.0.beta1
35
+ version: 3.0.7
36
36
  type: :runtime
37
37
  version_requirements: *id002
38
38
  description: Create a site engine template
@@ -54,7 +54,6 @@ files:
54
54
  - lib/hands_engine.rb
55
55
  - lib/hands_engine/version.rb
56
56
  - lib/templates/root/%underscored%.gemspec.tt
57
- - lib/templates/root/app/assets/images/%underscored%/rails.png
58
57
  - lib/templates/root/app/controllers/%underscored%/application_controller.rb.tt
59
58
  - lib/templates/root/app/controllers/%underscored%/example_controller.rb.tt
60
59
  - lib/templates/root/app/helpers/%underscored%/application_helper.rb
@@ -67,15 +66,16 @@ files:
67
66
  - lib/templates/root/config/routes.rb.tt
68
67
  - lib/templates/root/lib/%underscored%.rb.tt
69
68
  - lib/templates/root/lib/%underscored%/engine.rb.tt
69
+ - lib/templates/root/public/images/%underscored%/rails.png
70
70
  - lib/templates/themes/%underscored%.gemspec.tt
71
- - lib/templates/themes/app/assets/images/%underscored%/rails.png
72
- - lib/templates/themes/app/assets/javascripts/%underscored%/script.js
73
- - lib/templates/themes/app/assets/stylesheets/%underscored%/colors.css
74
- - lib/templates/themes/app/assets/stylesheets/%underscored%/style.css
75
71
  - lib/templates/themes/behavior.yml
76
72
  - lib/templates/themes/layout.html.erb
77
73
  - lib/templates/themes/lib/%underscored%.rb.tt
78
74
  - lib/templates/themes/lib/%underscored%/engine.rb.tt
75
+ - lib/templates/themes/public/images/%underscored%/rails.png
76
+ - lib/templates/themes/public/javascripts/%underscored%/script.js
77
+ - lib/templates/themes/public/stylesheets/%underscored%/colors.css
78
+ - lib/templates/themes/public/stylesheets/%underscored%/style.css
79
79
  - lib/templates/themes/views/_%underscored%.html.erb
80
80
  - spec/hands_engine_spec.rb
81
81
  - spec/spec_helper.rb