public
Description: Ruby PostRank Wrapper
Homepage: http://github.com/dj2/ruby-postrank/wikis
Clone URL: git://github.com/dj2/ruby-postrank.git
joshbuddy (author)
Wed Jan 07 09:44:46 -0800 2009
dj2 (committer)
Sat Jan 10 08:02:41 -0800 2009
ruby-postrank / postrank.gemspec
100644 24 lines (19 sloc) 1.089 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/json_parse.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