public
Description: A Ruby library for getting information from the GitHub API.
Homepage: http://mbleigh.lighthouseapp.com/projects/10115-ruby-github
Clone URL: git://github.com/mbleigh/ruby-github.git
ruby-github / ruby-github.gemspec
100644 15 lines (15 sloc) 0.691 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Gem::Specification.new do |s|
  s.name = "ruby-github"
  s.version = "0.0.5"
  s.date = "2008-04-26"
  s.summary = "Simple Ruby library to access the GitHub API."
  s.email = "michael@intridea.com"
  s.homepage = "http://github.com/mbleigh/ruby-github"
  s.description = "Ruby-GitHub is a small library that provides simple access to GitHub's evolving API."
  s.has_rdoc = true
  s.authors = ["Michael Bleigh"]
  s.files = ["History.txt", "Manifest.txt", "README.txt", "Rakefile", "ruby-github.gemspec", "lib/ruby-github.rb"]
  s.rdoc_options = ["--main", "README.txt"]
  s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
  s.add_dependency("mbleigh-mash", [">= 0.0.5"])
end