fotolia 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +3 -0
- data/LICENSE +19 -0
- data/README.rdoc +76 -0
- data/Rakefile +35 -0
- data/TODO +3 -0
- data/VERSION +1 -0
- data/fotolia.gemspec +67 -0
- data/lib/fotolia.rb +161 -0
- data/lib/fotolia/base.rb +294 -0
- data/lib/fotolia/categories.rb +53 -0
- data/lib/fotolia/category.rb +23 -0
- data/lib/fotolia/color.rb +14 -0
- data/lib/fotolia/colors.rb +39 -0
- data/lib/fotolia/conceptual_categories.rb +15 -0
- data/lib/fotolia/conceptual_category.rb +24 -0
- data/lib/fotolia/countries.rb +21 -0
- data/lib/fotolia/country.rb +14 -0
- data/lib/fotolia/galleries.rb +36 -0
- data/lib/fotolia/gallery.rb +65 -0
- data/lib/fotolia/language.rb +58 -0
- data/lib/fotolia/medium.rb +348 -0
- data/lib/fotolia/representative_categories.rb +15 -0
- data/lib/fotolia/representative_category.rb +24 -0
- data/lib/fotolia/search_result_set.rb +244 -0
- data/lib/fotolia/tag.rb +18 -0
- data/lib/fotolia/tags.rb +38 -0
- data/lib/fotolia/user.rb +200 -0
- metadata +94 -0
metadata
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fotolia
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- "Torsten Sch\xC3\xB6nebaum"
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-11-25 00:00:00 +01:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: patron
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.4.4
|
24
|
+
version:
|
25
|
+
description: Provides a ruby interface to Fotolia via its XML-RPC api.
|
26
|
+
email: torsten.schoenebaum@planquadrat-software.de
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- LICENSE
|
33
|
+
- README.rdoc
|
34
|
+
files:
|
35
|
+
- .gitignore
|
36
|
+
- LICENSE
|
37
|
+
- README.rdoc
|
38
|
+
- Rakefile
|
39
|
+
- TODO
|
40
|
+
- VERSION
|
41
|
+
- fotolia.gemspec
|
42
|
+
- lib/fotolia.rb
|
43
|
+
- lib/fotolia/base.rb
|
44
|
+
- lib/fotolia/categories.rb
|
45
|
+
- lib/fotolia/category.rb
|
46
|
+
- lib/fotolia/color.rb
|
47
|
+
- lib/fotolia/colors.rb
|
48
|
+
- lib/fotolia/conceptual_categories.rb
|
49
|
+
- lib/fotolia/conceptual_category.rb
|
50
|
+
- lib/fotolia/countries.rb
|
51
|
+
- lib/fotolia/country.rb
|
52
|
+
- lib/fotolia/galleries.rb
|
53
|
+
- lib/fotolia/gallery.rb
|
54
|
+
- lib/fotolia/language.rb
|
55
|
+
- lib/fotolia/medium.rb
|
56
|
+
- lib/fotolia/representative_categories.rb
|
57
|
+
- lib/fotolia/representative_category.rb
|
58
|
+
- lib/fotolia/search_result_set.rb
|
59
|
+
- lib/fotolia/tag.rb
|
60
|
+
- lib/fotolia/tags.rb
|
61
|
+
- lib/fotolia/user.rb
|
62
|
+
has_rdoc: true
|
63
|
+
homepage: http://github.com/tosch/fotolia
|
64
|
+
licenses: []
|
65
|
+
|
66
|
+
post_install_message:
|
67
|
+
rdoc_options:
|
68
|
+
- --charset=UTF-8
|
69
|
+
- --line-numbers
|
70
|
+
- --main
|
71
|
+
- README.rdoc
|
72
|
+
require_paths:
|
73
|
+
- lib
|
74
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: "0"
|
79
|
+
version:
|
80
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: "0"
|
85
|
+
version:
|
86
|
+
requirements: []
|
87
|
+
|
88
|
+
rubyforge_project:
|
89
|
+
rubygems_version: 1.3.5
|
90
|
+
signing_key:
|
91
|
+
specification_version: 3
|
92
|
+
summary: Fotolia API Client
|
93
|
+
test_files: []
|
94
|
+
|