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/pjhyett/github-gem.git
Search Repo:
pjhyett (author)
Wed Jun 11 12:13:58 -0700 2008
commit  f95d5b7a1bc146d8031cbb699ae999cfaa641077
tree    bdad29881d82dfda2d86012f8c4f9f2aa1df588c
parent  b7002ca235bb81e448c847430b39b4988b40bad7
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.2') 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