hands_engine 0.8.7 → 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/README.rdoc CHANGED
@@ -14,6 +14,27 @@ Give --help to see supported options.
14
14
 
15
15
  If you discover any bugs, feel free to send me a message:
16
16
 
17
- mail_to: bruno.barros@hands.com.br
18
-
19
- MIT License. Copyright 2010 Hands. http://www.hands.com.br
17
+ bruno.barros@hands.com.br
18
+
19
+ == License
20
+
21
+ Copyright 2010 Hands http://www.hands.com.br
22
+
23
+ Permission is hereby granted, free of charge, to any person obtaining
24
+ a copy of this software and associated documentation files (the
25
+ "Software"), to deal in the Software without restriction, including
26
+ without limitation the rights to use, copy, modify, merge, publish,
27
+ distribute, sublicense, and/or sell copies of the Software, and to
28
+ permit persons to whom the Software is furnished to do so, subject to
29
+ the following conditions:
30
+
31
+ The above copyright notice and this permission notice shall be
32
+ included in all copies or substantial portions of the Software.
33
+
34
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
35
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
36
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
37
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
38
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
39
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
40
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile CHANGED
@@ -1,2 +1,12 @@
1
1
  require 'bundler'
2
- Bundler::GemHelper.install_tasks
2
+ Bundler::GemHelper.install_tasks
3
+
4
+ require "rspec/core/rake_task"
5
+ RSpec::Core::RakeTask.new
6
+
7
+ require "rdoc/task"
8
+ RDoc::Task.new do |t|
9
+ t.rdoc_dir = "docs"
10
+ t.title = "Hands Engine Tool"
11
+ t.options << "-m" << "README.rdoc"
12
+ end
File without changes
data/hands_engine.gemspec CHANGED
@@ -12,10 +12,10 @@ Gem::Specification.new do |s|
12
12
  s.summary = %q{Create a site engine template}
13
13
  s.description = %q{Create a site engine template}
14
14
 
15
- s.rubyforge_project = "hands_engine"
16
-
17
15
  s.files = `git ls-files`.split("\n")
18
16
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
17
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
18
  s.require_paths = ["lib"]
19
+
20
+ s.add_development_dependency "rspec-rails", "~> 2.5.0"
21
21
  end
@@ -1,3 +1,3 @@
1
1
  module HandsEngine
2
- VERSION = "0.8.7"
2
+ VERSION = "1.0"
3
3
  end
@@ -0,0 +1,7 @@
1
+ require "spec_helper"
2
+
3
+ describe HandsEngine do
4
+ it "is a test" do
5
+ pending
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ ENV["BUNDLE_GEMFILE"] = File.dirname(__FILE__) + "/../Gemfile"
2
+
3
+ require "bundler/setup"
4
+ Bundler.setup
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.7
5
+ version: "1.0"
6
6
  platform: ruby
7
7
  authors:
8
8
  - Bruno S. Barros (Hands Mobile)
@@ -10,15 +10,25 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-05-06 00:00:00 -03:00
13
+ date: 2011-05-09 00:00:00 -03:00
14
14
  default_executable:
15
- dependencies: []
16
-
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: rspec-rails
18
+ prerelease: false
19
+ requirement: &id001 !ruby/object:Gem::Requirement
20
+ none: false
21
+ requirements:
22
+ - - ~>
23
+ - !ruby/object:Gem::Version
24
+ version: 2.5.0
25
+ type: :development
26
+ version_requirements: *id001
17
27
  description: Create a site engine template
18
28
  email:
19
29
  - bruno.barros@hands.com.br
20
30
  executables:
21
- - hands_engine
31
+ - hands
22
32
  extensions: []
23
33
 
24
34
  extra_rdoc_files: []
@@ -28,7 +38,7 @@ files:
28
38
  - MIT-LICENSE
29
39
  - README.rdoc
30
40
  - Rakefile
31
- - bin/hands_engine
41
+ - bin/hands
32
42
  - hands_engine.gemspec
33
43
  - lib/hands_engine.rb
34
44
  - lib/hands_engine/version.rb
@@ -45,6 +55,8 @@ files:
45
55
  - lib/templates/root/config/routes.rb.tt
46
56
  - lib/templates/root/lib/%underscored%.rb.tt
47
57
  - lib/templates/root/lib/%underscored%/engine.rb.tt
58
+ - spec/hands_engine_spec.rb
59
+ - spec/spec_helper.rb
48
60
  has_rdoc: true
49
61
  homepage: ""
50
62
  licenses: []
@@ -68,10 +80,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
68
80
  version: "0"
69
81
  requirements: []
70
82
 
71
- rubyforge_project: hands_engine
83
+ rubyforge_project:
72
84
  rubygems_version: 1.5.0
73
85
  signing_key:
74
86
  specification_version: 3
75
87
  summary: Create a site engine template
76
- test_files: []
77
-
88
+ test_files:
89
+ - spec/hands_engine_spec.rb
90
+ - spec/spec_helper.rb