forked from matthooks/vimeo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
matthooks
committed
Dec 21, 2009
1 parent
407af76
commit f4d3202
Showing
2 changed files
with
13 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,32 @@ | ||
# Generated by jeweler | ||
# DO NOT EDIT THIS FILE | ||
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec` | ||
# DO NOT EDIT THIS FILE DIRECTLY | ||
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command | ||
# -*- encoding: utf-8 -*- | ||
|
||
Gem::Specification.new do |s| | ||
s.name = %q{vimeo} | ||
s.version = "1.0.0" | ||
s.version = "1.1.0" | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["Matt Hooks"] | ||
s.date = %q{2009-09-28} | ||
s.date = %q{2009-12-20} | ||
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" | ||
"LICENSE" | ||
] | ||
s.files = [ | ||
".gitignore", | ||
"CHANGELOG.rdoc", | ||
"LICENSE", | ||
"README.rdoc", | ||
"README.markdown", | ||
"Rakefile", | ||
"VERSION.yml", | ||
"init.rb", | ||
"lib/vimeo.rb", | ||
"lib/vimeo/advanced.rb", | ||
"lib/vimeo/advanced/album.rb", | ||
"lib/vimeo/advanced/auth.rb", | ||
"lib/vimeo/advanced/base.rb", | ||
"lib/vimeo/advanced/channel.rb", | ||
"lib/vimeo/advanced/contact.rb", | ||
|
@@ -56,9 +55,11 @@ Gem::Specification.new do |s| | |
"test/fixtures/advanced/album/set_description.json", | ||
"test/fixtures/advanced/album/set_password.json", | ||
"test/fixtures/advanced/album/set_title.json", | ||
"test/fixtures/advanced/auth/check_access_token.json", | ||
"test/fixtures/advanced/auth/check_token.json", | ||
"test/fixtures/advanced/auth/get_frob.json", | ||
"test/fixtures/advanced/auth/get_token.json", | ||
"test/fixtures/advanced/auth/request_token.txt", | ||
"test/fixtures/advanced/channel/add_video.json", | ||
"test/fixtures/advanced/channel/get_all.json", | ||
"test/fixtures/advanced/channel/get_info.json", | ||
|
@@ -223,22 +224,23 @@ Gem::Specification.new do |s| | |
s.add_development_dependency(%q<fakeweb>, [">= 1.2.6"]) | ||
s.add_development_dependency(%q<crack>, [">= 0.1.4"]) | ||
s.add_runtime_dependency(%q<httparty>, [">= 0.4.5"]) | ||
s.add_runtime_dependency(%q<curb>, [">= 0.5.4.0"]) | ||
s.add_runtime_dependency(%q<json>, [">= 1.1.9"]) | ||
s.add_runtime_dependency(%q<oauth>, [">= 0.3.6"]) | ||
else | ||
s.add_dependency(%q<thoughtbot-shoulda>, [">= 2.10.2"]) | ||
s.add_dependency(%q<fakeweb>, [">= 1.2.6"]) | ||
s.add_dependency(%q<crack>, [">= 0.1.4"]) | ||
s.add_dependency(%q<httparty>, [">= 0.4.5"]) | ||
s.add_dependency(%q<curb>, [">= 0.5.4.0"]) | ||
s.add_dependency(%q<json>, [">= 1.1.9"]) | ||
s.add_dependency(%q<oauth>, [">= 0.3.6"]) | ||
end | ||
else | ||
s.add_dependency(%q<thoughtbot-shoulda>, [">= 2.10.2"]) | ||
s.add_dependency(%q<fakeweb>, [">= 1.2.6"]) | ||
s.add_dependency(%q<crack>, [">= 0.1.4"]) | ||
s.add_dependency(%q<httparty>, [">= 0.4.5"]) | ||
s.add_dependency(%q<curb>, [">= 0.5.4.0"]) | ||
s.add_dependency(%q<json>, [">= 1.1.9"]) | ||
s.add_dependency(%q<oauth>, [">= 0.3.6"]) | ||
end | ||
end | ||
|