public
Rubygem
Description: The official `github` command line helper for simplifying your GitHub experience.
Homepage: http://github.com
Clone URL: git://github.com/defunkt/github-gem.git
defunkt (author)
Fri May 02 13:42:42 -0700 2008
commit  3708ceb2ead9838b2f60ce1e4e407b0268a10401
tree    9df5e7a23a3198ca1229c0da70cca58f29685129
parent  f193a7f5c426760c3d01a6a8f5749661b155221b
github-gem / Rakefile
100644 20 lines (16 sloc) 0.609 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'rubygems'
require 'rake'
 
begin
  require 'echoe'
 
  Echoe.new('github', '0.1.1') do |p|
    p.rubyforge_name = 'github'
    p.summary = "The official `github` command line helper for simplifying your GitHub experience."
    p.description = "The official `github` command line helper for simplifying your GitHub experience."
    p.url = "http://github.com/"
    p.author = 'Chris Wanstrath'
    p.email = "chris@ozmm.org"
  end
 
rescue LoadError => boom
  puts "You are missing a dependency required for meta-operations on this gem."
  puts "#{boom.to_s.capitalize}."
end