public
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/halorgium/github-gem.git
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.0') 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