justimmo_client 0.4.0

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.
Files changed (76) hide show
  1. checksums.yaml +7 -0
  2. data/.editorconfig +15 -0
  3. data/.gitignore +15 -0
  4. data/.gitlab-ci.yml +67 -0
  5. data/.rspec +2 -0
  6. data/.rubocop.yml +90 -0
  7. data/.ruby-version +1 -0
  8. data/Gemfile +21 -0
  9. data/LICENSE +21 -0
  10. data/README.md +72 -0
  11. data/Rakefile +14 -0
  12. data/bin/console +21 -0
  13. data/bin/setup +8 -0
  14. data/examples/client.rb +16 -0
  15. data/justimmo_client.gemspec +41 -0
  16. data/lib/justimmo_client/api/v1/models/city.rb +16 -0
  17. data/lib/justimmo_client/api/v1/models/country.rb +44 -0
  18. data/lib/justimmo_client/api/v1/models/employee.rb +45 -0
  19. data/lib/justimmo_client/api/v1/models/federal_state.rb +15 -0
  20. data/lib/justimmo_client/api/v1/models/file.rb +64 -0
  21. data/lib/justimmo_client/api/v1/models/geo_location.rb +47 -0
  22. data/lib/justimmo_client/api/v1/models/image.rb +10 -0
  23. data/lib/justimmo_client/api/v1/models/justimmo_base.rb +15 -0
  24. data/lib/justimmo_client/api/v1/models/realty.rb +82 -0
  25. data/lib/justimmo_client/api/v1/models/realty_area.rb +49 -0
  26. data/lib/justimmo_client/api/v1/models/realty_category.rb +13 -0
  27. data/lib/justimmo_client/api/v1/models/realty_marketing.rb +12 -0
  28. data/lib/justimmo_client/api/v1/models/realty_price.rb +94 -0
  29. data/lib/justimmo_client/api/v1/models/realty_room_count.rb +35 -0
  30. data/lib/justimmo_client/api/v1/models/realty_type.rb +12 -0
  31. data/lib/justimmo_client/api/v1/models/realty_usage.rb +24 -0
  32. data/lib/justimmo_client/api/v1/models/region.rb +12 -0
  33. data/lib/justimmo_client/api/v1/representers/json/attachment_image_representer.rb +16 -0
  34. data/lib/justimmo_client/api/v1/representers/json/attachment_representer.rb +15 -0
  35. data/lib/justimmo_client/api/v1/representers/json/contact_representer.rb +30 -0
  36. data/lib/justimmo_client/api/v1/representers/json/justimmo_representer.rb +13 -0
  37. data/lib/justimmo_client/api/v1/representers/json/location_representer.rb +14 -0
  38. data/lib/justimmo_client/api/v1/representers/json/realty_category_representer.rb +21 -0
  39. data/lib/justimmo_client/api/v1/representers/json/realty_detail_representer.rb +69 -0
  40. data/lib/justimmo_client/api/v1/representers/json.rb +10 -0
  41. data/lib/justimmo_client/api/v1/representers/xml/city_representer.rb +18 -0
  42. data/lib/justimmo_client/api/v1/representers/xml/contact_representer.rb +15 -0
  43. data/lib/justimmo_client/api/v1/representers/xml/country_representer.rb +15 -0
  44. data/lib/justimmo_client/api/v1/representers/xml/employee_list_representer.rb +15 -0
  45. data/lib/justimmo_client/api/v1/representers/xml/employee_representer.rb +46 -0
  46. data/lib/justimmo_client/api/v1/representers/xml/federal_state_representer.rb +17 -0
  47. data/lib/justimmo_client/api/v1/representers/xml/geo_location_representer.rb +24 -0
  48. data/lib/justimmo_client/api/v1/representers/xml/justimmo_representer.rb +13 -0
  49. data/lib/justimmo_client/api/v1/representers/xml/realty_area_representer.rb +28 -0
  50. data/lib/justimmo_client/api/v1/representers/xml/realty_category_representer.rb +15 -0
  51. data/lib/justimmo_client/api/v1/representers/xml/realty_detail_representer.rb +92 -0
  52. data/lib/justimmo_client/api/v1/representers/xml/realty_list_representer.rb +85 -0
  53. data/lib/justimmo_client/api/v1/representers/xml/realty_price_representer.rb +53 -0
  54. data/lib/justimmo_client/api/v1/representers/xml/realty_representer.rb +32 -0
  55. data/lib/justimmo_client/api/v1/representers/xml/realty_room_count_representer.rb +22 -0
  56. data/lib/justimmo_client/api/v1/representers/xml/realty_type_representer.rb +14 -0
  57. data/lib/justimmo_client/api/v1/representers/xml/region_representer.rb +14 -0
  58. data/lib/justimmo_client/api/v1/representers/xml.rb +11 -0
  59. data/lib/justimmo_client/api/v1/requests/employee_request.rb +24 -0
  60. data/lib/justimmo_client/api/v1/requests/justimmo_request.rb +64 -0
  61. data/lib/justimmo_client/api/v1/requests/realty_request.rb +209 -0
  62. data/lib/justimmo_client/api/v1.rb +16 -0
  63. data/lib/justimmo_client/autoload.rb +17 -0
  64. data/lib/justimmo_client/core/caching.rb +55 -0
  65. data/lib/justimmo_client/core/config.rb +46 -0
  66. data/lib/justimmo_client/core/logging.rb +46 -0
  67. data/lib/justimmo_client/core/utils.rb +38 -0
  68. data/lib/justimmo_client/employee.rb +39 -0
  69. data/lib/justimmo_client/errors.rb +58 -0
  70. data/lib/justimmo_client/misc.rb +10 -0
  71. data/lib/justimmo_client/option_parser.rb +107 -0
  72. data/lib/justimmo_client/realty.rb +150 -0
  73. data/lib/justimmo_client/version.rb +5 -0
  74. data/lib/justimmo_client.rb +22 -0
  75. data/notes.md +19 -0
  76. metadata +271 -0
@@ -0,0 +1,150 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "json"
4
+
5
+ module JustimmoClient
6
+ # Public realty query interface
7
+ module Realty
8
+ extend JustimmoClient::Utils
9
+
10
+ module_function
11
+
12
+ # @option options [Integer] :limit (10)
13
+ # @option options [Integer] :offset (0)
14
+ # @option options [Symbol, String] :lang (:de)
15
+ # @option options [Symbol, String] :orderby
16
+ # @option options [Symbol, String] :ordertype (:asc)
17
+ # @option options [Symbol, String] :picturesize (:small)
18
+ # @option options [Boolean] :with_projects (false)
19
+ # @option options [Float] :price_min
20
+ # @option options [Float] :price_max
21
+ # @option options [Float] :price_per_sqm_min
22
+ # @option options [Float] :price_per_sqm_max
23
+ # @option options [Integer] :type_id
24
+ # @option options [Integer] :sub_type_id
25
+ # @option options [Symbol, String] :tag
26
+ # @option options [String, Integer] :zip_code
27
+ # @option options [String, Integer] :zip_code_min
28
+ # @option options [String, Integer] :zip_code_max
29
+ # @option options [Integer] :rooms_min
30
+ # @option options [Integer] :rooms_max
31
+ # @option options [Integer] :number
32
+ # @option options [Integer] :number_min
33
+ # @option options [Integer] :number_max
34
+ # @option options [Float] :area_min
35
+ # @option options [Float] :area_max
36
+ # @option options [Float] :living_area_min
37
+ # @option options [Float] :living_area_max
38
+ # @option options [Float] :floor_area_min
39
+ # @option options [Float] :floor_area_max
40
+ # @option options [Float] :surface_area_min
41
+ # @option options [Float] :surface_area_max
42
+ # @option options [Symbol, String] :keyword
43
+ # @option options [Integer] :country_id
44
+ # @option options [Integer] :federal_state_id
45
+ # @option options [Integer] :status_id
46
+ # @option options [Boolean] :rent
47
+ # @option options [Boolean] :purcase
48
+ # @option options [Integer] :owner_id
49
+ # @option options [Integer] :project_id
50
+ # @option options [Symbol, String] :type
51
+ # @option options [Integer] :parent_id
52
+ # @option options [DateTime] :updated_at_min
53
+ # @option options [DateTime] :updated_at_max
54
+ # @example Filter by zip code and limit to three results.
55
+ # JustimmoClient::Realty.list(zip_code: 6800, limit: 3)
56
+ # @return [Array<Object>] An array of basic realty objects, or an empty array on error.
57
+ def list(options = {})
58
+ xml_response = request(:realty).list(options)
59
+ model = Struct.new(:realties).new
60
+ representer(:realty_list).new(model).from_xml(xml_response).realties
61
+ rescue JustimmoClient::RetrievalFailed
62
+ []
63
+ end
64
+
65
+ # @param [Integer] id
66
+ # @param [Symbol, String] lang
67
+ # @return [Object, nil] A detailed realty object, or nil if it could not be found.
68
+ def detail(id, lang: nil)
69
+ xml_response = request(:realty).detail(id: id, lang: lang)
70
+ model = Struct.new(:realty).new
71
+ representer(:realty_detail).new(model).from_xml(xml_response).realty
72
+ rescue JustimmoClient::RetrievalFailed
73
+ nil
74
+ end
75
+
76
+ # @see list
77
+ # @return [Array<Object>] An array of detailed realty objects, or an empty array on error.
78
+ def details(options = {})
79
+ ids(options).map { |id| detail(id) }
80
+ end
81
+
82
+ # @see list
83
+ # @return [Array<Integer>] An array of realty ids, empty array if no results.
84
+ def ids(options = {})
85
+ json_response = request(:realty).ids(options)
86
+ ::JSON.parse(json_response).map(&:to_i)
87
+ rescue JustimmoClient::RetrievalFailed
88
+ []
89
+ end
90
+
91
+ # @option options [Boolean] :all (false)
92
+ # @return [Array<Object>]
93
+ def categories(options = {})
94
+ xml_response = request(:realty).categories(options)
95
+ representer(:realty_category).for_collection.new([]).from_xml(xml_response)
96
+ rescue JustimmoClient::RetrievalFailed
97
+ []
98
+ end
99
+
100
+ # @option options [Boolean] :all (false)
101
+ # @return [Array<Object>]
102
+ def types(options = {})
103
+ xml_response = request(:realty).types(options)
104
+ representer(:realty_type).for_collection.new([]).from_xml(xml_response)
105
+ rescue JustimmoClient::RetrievalFailed
106
+ []
107
+ end
108
+
109
+ # @option options [Boolean] :all (false)
110
+ # @return [Array<Object>]
111
+ def countries(options = {})
112
+ xml_response = request(:realty).countries(options)
113
+ representer(:country).for_collection.new([]).from_xml(xml_response)
114
+ rescue JustimmoClient::RetrievalFailed
115
+ []
116
+ end
117
+
118
+ # @option options [Boolean] :all (false)
119
+ # @option options [Integer] :country (nil)
120
+ # @return [Array<Object>]
121
+ def federal_states(options = {})
122
+ xml_response = request(:realty).federal_states(options)
123
+ representer(:federal_state).for_collection.new([]).from_xml(xml_response)
124
+ rescue JustimmoClient::RetrievalFailed
125
+ []
126
+ end
127
+
128
+ # @option options [Boolean] :all (false)
129
+ # @option options [Integer] :country (nil)
130
+ # @option options [Integer] :federal_state (nil)
131
+ # @return [Array<Object>]
132
+ def regions(options = {})
133
+ xml_response = request(:realty).regions(options)
134
+ representer(:region).for_collection.new([]).from_xml(xml_response)
135
+ rescue JustimmoClient::RetrievalFailed
136
+ []
137
+ end
138
+
139
+ # @option options [Boolean] :all (false)
140
+ # @option options [Integer] :country (nil)
141
+ # @option options [Integer] :federal_state (nil)
142
+ # @return [Array<Object>]
143
+ def zip_codes_and_cities(options = {})
144
+ xml_response = request(:realty).zip_codes_and_cities(options)
145
+ representer(:city).for_collection.new([]).from_xml(xml_response)
146
+ rescue JustimmoClient::RetrievalFailed
147
+ []
148
+ end
149
+ end
150
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module JustimmoClient
4
+ VERSION = "0.4.0"
5
+ end
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "justimmo_client/autoload"
4
+
5
+ # The Justimmo API.
6
+ module JustimmoClient
7
+ module_function
8
+
9
+ # Loads configuration and initializes the API.
10
+ def configure(&block)
11
+ JustimmoClient::Config.configure(&block)
12
+ initialize_api
13
+ end
14
+
15
+ def initialize_api
16
+ api_ver = JustimmoClient::Config.api_ver
17
+ send :autoload, "V#{api_ver}", "justimmo_client/api/v#{api_ver}"
18
+ end
19
+
20
+ # Initially load the defaul API scope.
21
+ initialize_api
22
+ end
data/notes.md ADDED
@@ -0,0 +1,19 @@
1
+ # Endpoints
2
+
3
+ ## Employees
4
+ * team/list
5
+ * team/detail
6
+ * team/ids
7
+
8
+ ## Projects
9
+ * projekt/list
10
+ * projekt/detail
11
+ * projekt/ids
12
+
13
+ ## Basic Data
14
+ * objekt/kategorien
15
+ * objekt/objektarten
16
+ * objekt/laender
17
+ * objekt/bundeslaender
18
+ * objekt/regionen
19
+ * objekt/plzUndOrte
metadata ADDED
@@ -0,0 +1,271 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: justimmo_client
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.0
5
+ platform: ruby
6
+ authors:
7
+ - Patrick Auernig
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-09-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.14'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.14'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rest-client
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2'
55
+ - !ruby/object:Gem::Dependency
56
+ name: retriable
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: nokogiri
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.7'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.7'
83
+ - !ruby/object:Gem::Dependency
84
+ name: multi_json
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: representable
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '3.0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '3.0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: virtus
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: activesupport
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '5.1'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '5.1'
139
+ - !ruby/object:Gem::Dependency
140
+ name: iso_country_codes
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :runtime
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: monetize
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :runtime
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ description:
168
+ email: patrick.auernig@mykolab.com
169
+ executables: []
170
+ extensions: []
171
+ extra_rdoc_files: []
172
+ files:
173
+ - ".editorconfig"
174
+ - ".gitignore"
175
+ - ".gitlab-ci.yml"
176
+ - ".rspec"
177
+ - ".rubocop.yml"
178
+ - ".ruby-version"
179
+ - Gemfile
180
+ - LICENSE
181
+ - README.md
182
+ - Rakefile
183
+ - bin/console
184
+ - bin/setup
185
+ - examples/client.rb
186
+ - justimmo_client.gemspec
187
+ - lib/justimmo_client.rb
188
+ - lib/justimmo_client/api/v1.rb
189
+ - lib/justimmo_client/api/v1/models/city.rb
190
+ - lib/justimmo_client/api/v1/models/country.rb
191
+ - lib/justimmo_client/api/v1/models/employee.rb
192
+ - lib/justimmo_client/api/v1/models/federal_state.rb
193
+ - lib/justimmo_client/api/v1/models/file.rb
194
+ - lib/justimmo_client/api/v1/models/geo_location.rb
195
+ - lib/justimmo_client/api/v1/models/image.rb
196
+ - lib/justimmo_client/api/v1/models/justimmo_base.rb
197
+ - lib/justimmo_client/api/v1/models/realty.rb
198
+ - lib/justimmo_client/api/v1/models/realty_area.rb
199
+ - lib/justimmo_client/api/v1/models/realty_category.rb
200
+ - lib/justimmo_client/api/v1/models/realty_marketing.rb
201
+ - lib/justimmo_client/api/v1/models/realty_price.rb
202
+ - lib/justimmo_client/api/v1/models/realty_room_count.rb
203
+ - lib/justimmo_client/api/v1/models/realty_type.rb
204
+ - lib/justimmo_client/api/v1/models/realty_usage.rb
205
+ - lib/justimmo_client/api/v1/models/region.rb
206
+ - lib/justimmo_client/api/v1/representers/json.rb
207
+ - lib/justimmo_client/api/v1/representers/json/attachment_image_representer.rb
208
+ - lib/justimmo_client/api/v1/representers/json/attachment_representer.rb
209
+ - lib/justimmo_client/api/v1/representers/json/contact_representer.rb
210
+ - lib/justimmo_client/api/v1/representers/json/justimmo_representer.rb
211
+ - lib/justimmo_client/api/v1/representers/json/location_representer.rb
212
+ - lib/justimmo_client/api/v1/representers/json/realty_category_representer.rb
213
+ - lib/justimmo_client/api/v1/representers/json/realty_detail_representer.rb
214
+ - lib/justimmo_client/api/v1/representers/xml.rb
215
+ - lib/justimmo_client/api/v1/representers/xml/city_representer.rb
216
+ - lib/justimmo_client/api/v1/representers/xml/contact_representer.rb
217
+ - lib/justimmo_client/api/v1/representers/xml/country_representer.rb
218
+ - lib/justimmo_client/api/v1/representers/xml/employee_list_representer.rb
219
+ - lib/justimmo_client/api/v1/representers/xml/employee_representer.rb
220
+ - lib/justimmo_client/api/v1/representers/xml/federal_state_representer.rb
221
+ - lib/justimmo_client/api/v1/representers/xml/geo_location_representer.rb
222
+ - lib/justimmo_client/api/v1/representers/xml/justimmo_representer.rb
223
+ - lib/justimmo_client/api/v1/representers/xml/realty_area_representer.rb
224
+ - lib/justimmo_client/api/v1/representers/xml/realty_category_representer.rb
225
+ - lib/justimmo_client/api/v1/representers/xml/realty_detail_representer.rb
226
+ - lib/justimmo_client/api/v1/representers/xml/realty_list_representer.rb
227
+ - lib/justimmo_client/api/v1/representers/xml/realty_price_representer.rb
228
+ - lib/justimmo_client/api/v1/representers/xml/realty_representer.rb
229
+ - lib/justimmo_client/api/v1/representers/xml/realty_room_count_representer.rb
230
+ - lib/justimmo_client/api/v1/representers/xml/realty_type_representer.rb
231
+ - lib/justimmo_client/api/v1/representers/xml/region_representer.rb
232
+ - lib/justimmo_client/api/v1/requests/employee_request.rb
233
+ - lib/justimmo_client/api/v1/requests/justimmo_request.rb
234
+ - lib/justimmo_client/api/v1/requests/realty_request.rb
235
+ - lib/justimmo_client/autoload.rb
236
+ - lib/justimmo_client/core/caching.rb
237
+ - lib/justimmo_client/core/config.rb
238
+ - lib/justimmo_client/core/logging.rb
239
+ - lib/justimmo_client/core/utils.rb
240
+ - lib/justimmo_client/employee.rb
241
+ - lib/justimmo_client/errors.rb
242
+ - lib/justimmo_client/misc.rb
243
+ - lib/justimmo_client/option_parser.rb
244
+ - lib/justimmo_client/realty.rb
245
+ - lib/justimmo_client/version.rb
246
+ - notes.md
247
+ homepage: https://gitlab.com/exacting/justimmo-client-ruby
248
+ licenses:
249
+ - MIT
250
+ metadata: {}
251
+ post_install_message:
252
+ rdoc_options: []
253
+ require_paths:
254
+ - lib
255
+ required_ruby_version: !ruby/object:Gem::Requirement
256
+ requirements:
257
+ - - ">="
258
+ - !ruby/object:Gem::Version
259
+ version: '0'
260
+ required_rubygems_version: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - ">="
263
+ - !ruby/object:Gem::Version
264
+ version: '0'
265
+ requirements: []
266
+ rubyforge_project:
267
+ rubygems_version: 2.5.2
268
+ signing_key:
269
+ specification_version: 4
270
+ summary: API client for Justimmo
271
+ test_files: []