public
Description: Wrapper for netflix api calls that incorporates oauth negotiation.
Homepage:
Clone URL: git://github.com/rares/netflix.git
reagent (author)
Sat Jan 03 21:26:32 -0800 2009
commit  bec89493f9fceb64823854bcc58d1d0d992ff75b
tree    cc2bd78cd3c196608fca904b74a6403a91ffce7a
parent  d299931d58bbba64868d5a72355ac36b2af545f0
netflix / netflix.gemspec
100644 32 lines (27 sloc) 1.16 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
25
26
27
28
29
30
31
32
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{netflix}
  s.version = "0.1.0"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Rob Ares"]
  s.date = %q{2008-11-14}
  s.email = %q{rob.ares@gmail.com}
  s.extra_rdoc_files = ["README.markdown"]
  s.files = ["README.markdown", "Rakefile", "lib/netflix", "lib/netflix/client.rb", "lib/netflix/user.rb", "lib/netflix/version.rb", "lib/netflix.rb"]
  s.has_rdoc = true
  s.homepage = %q{http://www.robares.com}
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.3.1}
  s.summary = %q{This gem handles some of the complexity in dealing with the netflix api (and OAuth in turn).}
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<rares-oauth>, [">= 0.2.7"])
    else
      s.add_dependency(%q<rares-oauth>, [">= 0.2.7"])
    end
  else
    s.add_dependency(%q<rares-oauth>, [">= 0.2.7"])
  end
end