public
Description: The web app builder for Rails
Homepage: http://hobocentral.net
Clone URL: git://github.com/tablatom/hobo.git
Switching from hoe to echoe for the hobofields and hobosupport gems

The main benefit is that those gems no longer have hoe as a dependency
tablatom (author)
Fri Apr 18 10:13:45 -0700 2008
commit  2535ca27d91b683a75e41fee35977b3d242e5e86
tree    87b3b35b57fb4ef7e40d320b7d11e6038a84cefd
parent  769fb19dd9a809f467ca89aa3bcc3fe0eecd5254
...
10
11
12
13
14
 
 
...
10
11
12
 
13
14
15
0
@@ -10,5 +10,6 @@ doc/agility-tutorial/agility/db/*
0
 
0
 hobo/taglib-docs
0
 
0
-
0
 hobosupport/pkg
0
+
0
+hobofields/pkg
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 
 
 
 
 
 
 
 
 
 
 
16
17
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
0
@@ -1,17 +1,13 @@
0
-require 'rubygems'
0
-require 'hoe'
0
-
0
-$: << "./lib"
0
-
0
-require 'hobofields'
0
-
0
-Hoe.new('hobofields', HoboFields::VERSION) do |p|
0
- p.rubyforge_name = 'hobo'
0
- p.author = 'Tom Locke'
0
- p.email = 'tom@tomlocke.com'
0
- p.url = "http://hobocentral.net/hobo-support"
0
- p.summary = 'Rich field types and migration generator for Rails'
0
- p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
0
- p.changes = "" # p.paragraphs_of('History.txt', 0..1).join("\n\n")
0
+require 'echoe'
0
+
0
+Echoe.new('hobofields') do |p|
0
+ p.author = "Tom Locke"
0
+ p.email = "tom@tomlocke.com"
0
+ p.summary = "Rich field types and migration generator for Rails"
0
+ p.url = "http://hobocentral.net/hobofields"
0
+ p.project = "hobo"
0
+
0
+ p.changelog = "CHANGES.txt"
0
+ p.version = "0.7.5"
0
 end
0
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 
 
 
 
 
 
 
 
 
 
 
16
17
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
 
0
@@ -1,17 +1,12 @@
0
-require 'rubygems'
0
-require 'hoe'
0
-
0
-$: << "./lib"
0
-
0
-require 'hobosupport'
0
-
0
-Hoe.new('hobosupport', HoboSupport::VERSION) do |p|
0
- p.rubyforge_name = 'hobo'
0
- p.author = 'Tom Locke'
0
- p.email = 'tom@tomlocke.com'
0
- p.url = "http://hobocentral.net/hobosupport"
0
- p.summary = 'Core Ruby extensions from the Hobo project'
0
- p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
0
- p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
0
+require 'echoe'
0
+
0
+Echoe.new('hobosupport') do |p|
0
+ p.author = "Tom Locke"
0
+ p.email = "tom@tomlocke.com"
0
+ p.summary = "Core Ruby extensions from the Hobo project"
0
+ p.url = "http://hobocentral.net/hobosupport"
0
+ p.project = "hobo"
0
+
0
+ p.changelog = "CHANGES.txt"
0
+ p.version = "0.7.5"
0
 end
0
-

Comments

    No one has commented yet.