forked from matthooks/vimeo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvimeo.gemspec
65 lines (61 loc) · 1.98 KB
/
vimeo.gemspec
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{vimeo}
s.version = "0.2.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Matt Hooks, Sebastian Vogelsang"]
s.date = %q{2009-04-21}
s.description = %q{A full featured Ruby implementation of the Vimeo API.}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"CHANGELOG.rdoc",
"LICENSE",
"README.rdoc"
]
s.files = [
"CHANGELOG.rdoc",
"README.rdoc",
"VERSION.yml",
"lib/vimeo.rb",
"lib/vimeo/advanced.rb",
"lib/vimeo/advanced/auth.rb",
"lib/vimeo/advanced/base.rb",
"lib/vimeo/advanced/contact.rb",
"lib/vimeo/advanced/group.rb",
"lib/vimeo/advanced/person.rb",
"lib/vimeo/advanced/test.rb",
"lib/vimeo/advanced/upload.rb",
"lib/vimeo/advanced/video.rb",
"lib/vimeo/simple.rb",
"lib/vimeo/simple/activity.rb",
"lib/vimeo/simple/album.rb",
"lib/vimeo/simple/base.rb",
"lib/vimeo/simple/channel.rb",
"lib/vimeo/simple/clip.rb",
"lib/vimeo/simple/group.rb",
"lib/vimeo/simple/user.rb",
"test/test_helper.rb",
"test/vimeo_test.rb"
]
s.has_rdoc = true
s.homepage = %q{http://github.com/matthooks/vimeo}
s.rdoc_options = ["--main", "README.rdoc", "--inline-source", "--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.2}
s.summary = %q{A full featured Ruby implementation of the Vimeo API.}
s.test_files = [
"test/test_helper.rb",
"test/vimeo_test.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<jnunemaker-httparty>, [">= 0.2.6"])
else
s.add_dependency(%q<jnunemaker-httparty>, [">= 0.2.6"])
end
else
s.add_dependency(%q<jnunemaker-httparty>, [">= 0.2.6"])
end
end