aiderss / ruby-postrank forked from dj2/ruby-postrank

Ruby PostRank Wrapper by Dan Sinclair

Joshua Hull (author)
Tue Jan 06 09:04:57 -0800 2009
aiderss (committer)
Tue Jan 06 09:12:33 -0800 2009
ruby-postrank / postrank.gemspec
100644 24 lines (19 sloc) 1.062 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Gem::Specification.new do |s|
  s.name = %q{postrank}
  s.version = "0.9.1"
  s.authors = ["dan sinclair"]
  s.email = %q{dan@aiderss.com}
  s.homepage = %q{http://http://github.com/dj2/ruby-postrank/wikis/}
 
  s.summary = %q{PostRank provides simple wrapper around the PostRank.com API.}
  s.description = %q{PostRank provides a simple wrapper around the PostRank.com API.}
 
  s.add_dependency('json')
  s.requirements << 'cgi'
  s.requirements << 'net/http'
  s.requirements << 'uri'
  s.requirements << 'oauth'
 
  s.has_rdoc = false
  s.rdoc_options << '--title' << 'PostRank Documentation' <<
                    '--main' << 'README.rdoc' <<
                    '--line-numbers'
 
  s.files = %w(README.rdoc COPYING lib/postrank.rb lib/postrank/channel.rb lib/postrank/connection.rb lib/postrank/entry.rb lib/postrank/feed.rb lib/postrank/postrank.rb lib/postrank/subscription.rb lib/postrank/user.rb lib/postrank/recommend.rb examples/api_example.rb examples/api_example2.rb examples/api_example3.rb examples/api_example4.rb examples/simple_example.rb)
end