hoe-roodi 1.0.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.
File without changes
@@ -0,0 +1,6 @@
1
+ === 1.0.0 / 2011-02-05
2
+
3
+ * 1 major enhancement
4
+
5
+ * Birthday!
6
+
@@ -0,0 +1,6 @@
1
+ History.txt
2
+ Manifest.txt
3
+ README.txt
4
+ Rakefile
5
+ lib/hoe/roodi.rb
6
+ test/test_hoe_roodi.rb
@@ -0,0 +1,62 @@
1
+ = hoe-roodi
2
+
3
+ * http://github.com/erikh/hoe-roodi
4
+
5
+ == DESCRIPTION:
6
+
7
+ hoe-roodi is a Hoe plugin to integrate the roodi code smell tool into your hoe
8
+ projects.
9
+
10
+ == FEATURES/PROBLEMS:
11
+
12
+ * Integrates Roodi
13
+ * Rocks your world
14
+
15
+ == SYNOPSIS:
16
+
17
+ In your rakefile:
18
+
19
+ Hoe.plugin :roodi
20
+
21
+ == REQUIREMENTS:
22
+
23
+ * hoe
24
+ * roodi
25
+
26
+ == INSTALL:
27
+
28
+ * gem install hoe-roodi
29
+
30
+ == DEVELOPERS:
31
+
32
+ After checking out the source, run:
33
+
34
+ $ rake newb
35
+
36
+ This task will install any missing dependencies, run the tests/specs,
37
+ and generate the RDoc.
38
+
39
+ == LICENSE:
40
+
41
+ (The MIT License)
42
+
43
+ Copyright (c) 2011 Erik Hollensbe
44
+
45
+ Permission is hereby granted, free of charge, to any person obtaining
46
+ a copy of this software and associated documentation files (the
47
+ 'Software'), to deal in the Software without restriction, including
48
+ without limitation the rights to use, copy, modify, merge, publish,
49
+ distribute, sublicense, and/or sell copies of the Software, and to
50
+ permit persons to whom the Software is furnished to do so, subject to
51
+ the following conditions:
52
+
53
+ The above copyright notice and this permission notice shall be
54
+ included in all copies or substantial portions of the Software.
55
+
56
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
57
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
58
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
59
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
60
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
61
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
62
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,23 @@
1
+ # -*- ruby -*-
2
+
3
+ require 'rubygems'
4
+ require 'hoe'
5
+
6
+ Hoe.plugins.delete :rubyforge
7
+ Hoe.plugin :git
8
+ Hoe.plugin :rcov
9
+
10
+ spec = Hoe.spec 'hoe-roodi' do
11
+ developer('Erik Hollensbe', 'erik@hollensbe.org')
12
+
13
+ self.rubyforge_name = nil
14
+
15
+ extra_deps << [ 'hoe' ]
16
+ extra_deps << [ 'roodi' ]
17
+ end
18
+
19
+ task :install => [:gem] do
20
+ sh "gem install pkg/#{spec.name}-#{spec.version}.gem"
21
+ end
22
+
23
+ # vim: syntax=ruby
@@ -0,0 +1,14 @@
1
+ module Hoe::Roodi
2
+ VERSION = "1.0.0"
3
+
4
+ def initialize_roodi
5
+ require 'roodi'
6
+ require 'roodi_task'
7
+ end
8
+
9
+ def define_roodi_tasks
10
+ RoodiTask.new do |t|
11
+ t.verbose = false
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,6 @@
1
+ require "test/unit"
2
+ require 'hoe'
3
+ require "hoe/roodi"
4
+
5
+ class TestHoeRoodi < Test::Unit::TestCase
6
+ end
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hoe-roodi
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 1.0.0
6
+ platform: ruby
7
+ authors:
8
+ - Erik Hollensbe
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-02-05 00:00:00 -05:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: hoe
18
+ prerelease: false
19
+ requirement: &id001 !ruby/object:Gem::Requirement
20
+ none: false
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: "0"
25
+ type: :runtime
26
+ version_requirements: *id001
27
+ - !ruby/object:Gem::Dependency
28
+ name: roodi
29
+ prerelease: false
30
+ requirement: &id002 !ruby/object:Gem::Requirement
31
+ none: false
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: "0"
36
+ type: :runtime
37
+ version_requirements: *id002
38
+ - !ruby/object:Gem::Dependency
39
+ name: hoe
40
+ prerelease: false
41
+ requirement: &id003 !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: 2.9.0
47
+ type: :development
48
+ version_requirements: *id003
49
+ description: |-
50
+ hoe-roodi is a Hoe plugin to integrate the roodi code smell tool into your hoe
51
+ projects.
52
+ email:
53
+ - erik@hollensbe.org
54
+ executables: []
55
+
56
+ extensions: []
57
+
58
+ extra_rdoc_files:
59
+ - History.txt
60
+ - Manifest.txt
61
+ - README.txt
62
+ files:
63
+ - History.txt
64
+ - Manifest.txt
65
+ - README.txt
66
+ - Rakefile
67
+ - lib/hoe/roodi.rb
68
+ - test/test_hoe_roodi.rb
69
+ - .gemtest
70
+ has_rdoc: true
71
+ homepage: http://github.com/erikh/hoe-roodi
72
+ licenses: []
73
+
74
+ post_install_message:
75
+ rdoc_options:
76
+ - --main
77
+ - README.txt
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: "0"
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ none: false
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: "0"
92
+ requirements: []
93
+
94
+ rubyforge_project:
95
+ rubygems_version: 1.5.0
96
+ signing_key:
97
+ specification_version: 3
98
+ summary: hoe-roodi is a Hoe plugin to integrate the roodi code smell tool into your hoe projects.
99
+ test_files:
100
+ - test/test_hoe_roodi.rb