forked from dholdren/netflix-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gemspec
More file actions
28 lines (22 loc) · 724 Bytes
/
.gemspec
File metadata and controls
28 lines (22 loc) · 724 Bytes
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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'netflix/version'
Gem::Specification.new do |s|
s.name = "netflix"
s.version = Netflix::VERSION
s.authors = ["Dean Holdren"]
s.date = %q{2012-01-09}
s.description = "Ruby Netflix API wrapper"
s.summary = s.description
s.email = 'deanholdren@gmail.com'
s.require_path = "lib"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.homepage = "https://github.com/dholdren/netflix-ruby"
s.has_rdoc = false
s.add_dependency("oauth")
s.add_dependency("json")
s.add_dependency("launchy")
s.add_development_dependency("fakeweb")
end