public
Rubygem
Fork of defunkt/github-gem
Description: The official `github` command line helper for simplifying your GitHub experience.
Homepage: http://github.com
Clone URL: git://github.com/rubyist/github-gem.git
move to using Echoe
defunkt (author)
Mon Mar 03 11:46:12 -0800 2008
commit  7c9bbcb758f61198f5841c0e183b8c865d7a466b
tree    7bee49cf30fc231b108de7c1f36e3ec4a3087d4a
parent  7a5a3fc35629ca8e0181b2ca74f4bbc1cf270c9f
...
1
2
3
4
5
6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
...
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
0
@@ -1,7 +1,19 @@
0
-desc 'Build the gem'
0
-task :build do
0
- require 'rubygems'
0
- require 'rubygems/builder'
0
- require 'gemify'
0
- Gemify.new.main
0
+require 'rubygems'
0
+require 'rake'
0
+
0
+begin
0
+ require 'echoe'
0
+
0
+ Echoe.new('github', '0.1.0') do |p|
0
+ p.rubyforge_name = 'github'
0
+ p.summary = "The official `github` command line helper for simplifying your GitHub experience."
0
+ p.description = "The official `github` command line helper for simplifying your GitHub experience."
0
+ p.url = "http://github.com/"
0
+ p.author = 'Chris Wanstrath'
0
+ p.email = "chris@ozmm.org"
0
+ end
0
+
0
+rescue LoadError => boom
0
+ puts "You are missing a dependency required for meta-operations on this gem."
0
+ puts "#{boom.to_s.capitalize}."
0
 end

Comments

    No one has commented yet.