This repository was archived by the owner on Nov 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathruby-picasa.gemspec
More file actions
75 lines (70 loc) · 2.61 KB
/
ruby-picasa.gemspec
File metadata and controls
75 lines (70 loc) · 2.61 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
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
66
67
68
69
70
71
72
73
74
# Generated by jeweler
# 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{ruby-picasa}
s.version = "0.2.4"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["pangloss", "darrick@innatesoftware.com", "fjg@happycoders.org", 'fourcade.m+ruby_picasa@gmail.com']
s.date = %q{2015-12-05}
s.description = %q{Provides a super easy to use object layer for authenticating and accessing Picasa through their API.}
s.email = %q{fourcade.m+ruby_picasa@gmail.com}
s.extra_rdoc_files = [
"README.txt"
]
s.files = [
".autotest",
".gitignore",
"History.txt",
"Manifest.txt",
"README.txt",
"Rakefile",
"VERSION",
"init.rb",
"lib/ruby_picasa.rb",
"lib/ruby_picasa/types.rb",
"ruby-picasa.gemspec",
"spec/ruby_picasa/types_spec.rb",
"spec/ruby_picasa_spec.rb",
"spec/sample/album.atom",
"spec/sample/recent.atom",
"spec/sample/search-geo-1-result.atom",
"spec/sample/search-without-category.xml",
"spec/sample/search.atom",
"spec/sample/user-without-photos.xml",
"spec/sample/user.atom",
"spec/spec.opts",
"spec/spec_helper.rb"
]
s.homepage = %q{http://github.com/mfo/ruby_picasa}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{Provides a super easy to use object layer for authenticating and accessing Picasa through their API.}
s.test_files = [
"spec/ruby_picasa/types_spec.rb",
"spec/ruby_picasa_spec.rb",
"spec/spec_helper.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<objectify-xml>, [">= 0.2.3"])
s.add_runtime_dependency(%q<signet>, [">= 0.6.0"])
s.add_runtime_dependency(%q<activesupport>, [">= 3.2"])
s.add_runtime_dependency(%q<google-api-client>, [">= 0.8.2"])
else
s.add_dependency(%q<objectify-xml>, [">= 0.2.3"])
s.add_dependency(%q<signet>, [">= 0.6.0"])
s.add_dependency(%q<activesupport>, [">= 3.2"])
s.add_dependency(%q<google-api-client>, [">= 0.8.2"])
end
else
s.add_dependency(%q<objectify-xml>, [">= 0.2.3"])
s.add_dependency(%q<signet>, [">= 0.6.0"])
s.add_dependency(%q<activesupport>, [">= 3.2"])
s.add_dependency(%q<google-api-client>, [">= 0.8.2"])
end
end