immobilienscout 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 4295ca585c98d047afee8acc4dc863f8cb719d53
4
- data.tar.gz: b522d5a061e041310ba350ebd58586bb8db09e51
2
+ SHA256:
3
+ metadata.gz: e94144983edce73e19c3bf4a64b2ab02ef5297e4f10f714ddb7b0e68645aa9b6
4
+ data.tar.gz: a816281b3268330b43d8a2f7b50ecb25e281d749b79b2172af7068ca64281bcf
5
5
  SHA512:
6
- metadata.gz: 717a3bb1ff53ac6939b4472e36128b05185d7b8b44422d9b975c2c4468015600b59b7dcbf4505c9dcb6d0152bfe078b09a555171a85c666c7654d6100e3ee4a8
7
- data.tar.gz: 83dfaa727702700f22e2ed504624770ffc004248c0b0717d7260948965962930f7a76d3ef24c7aef499f6e0c7f35ba734e79e113816ae7d622c35dc14ee95be4
6
+ metadata.gz: 7d4664aaecc0dce42f23d10776a8102a71e7419599254ab36be12ccf594ed049bf7f4d6f4813b5768c9c28b17d61548fabc6b014f2dae03e8dc6dcad51f8053c
7
+ data.tar.gz: bc3f0ae38c2729544fb49f74a9514c1282accc91171899987c7d4ea5f16643c649dd6d6e9c530f383bc91329c227cacf8273b6b48fda0d7ab96b54748108a627
data/.gitignore ADDED
@@ -0,0 +1,15 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+
13
+ .env
14
+ .DS_Store
15
+ .byebug_history
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,9 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.4.6
7
+ - 2.5.5
8
+ - 2.6.3
9
+ before_install: gem install bundler -v 2.0.2
data/CHANGELOG.md ADDED
@@ -0,0 +1,23 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
+ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [Unreleased]
8
+
9
+ ## [0.0.3] - 2019-08-15
10
+ Update the response accord to the Immobilienscout changes in the `JSON` structure
11
+
12
+ ## [0.0.2] - 2019-06-17
13
+ Fixing bugs:
14
+ * Require `timecop` in `immoscout.rb`
15
+ * Require `byebug` in `immoscout.rb`
16
+
17
+ ## [0.0.1] - 2019-06-13
18
+ Releasing the gem with five endpoints:
19
+ * Create Property
20
+ * Publish Property
21
+ * Delete Property
22
+ * Add Attachment
23
+ * Generate ScoutReport
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at backend-team@homeday.de. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,70 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ immobilienscout (0.0.2)
5
+ activesupport
6
+ json
7
+ multipart-post
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ activesupport (5.2.3)
13
+ concurrent-ruby (~> 1.0, >= 1.0.2)
14
+ i18n (>= 0.7, < 2)
15
+ minitest (~> 5.1)
16
+ tzinfo (~> 1.1)
17
+ addressable (2.6.0)
18
+ public_suffix (>= 2.0.2, < 4.0)
19
+ byebug (9.1.0)
20
+ concurrent-ruby (1.1.5)
21
+ crack (0.4.3)
22
+ safe_yaml (~> 1.0.0)
23
+ diff-lcs (1.3)
24
+ hashdiff (1.0.0)
25
+ i18n (1.6.0)
26
+ concurrent-ruby (~> 1.0)
27
+ json (2.2.0)
28
+ minitest (5.11.3)
29
+ multipart-post (2.1.1)
30
+ public_suffix (3.1.1)
31
+ rake (12.3.3)
32
+ rspec (3.8.0)
33
+ rspec-core (~> 3.8.0)
34
+ rspec-expectations (~> 3.8.0)
35
+ rspec-mocks (~> 3.8.0)
36
+ rspec-core (3.8.2)
37
+ rspec-support (~> 3.8.0)
38
+ rspec-expectations (3.8.4)
39
+ diff-lcs (>= 1.2.0, < 2.0)
40
+ rspec-support (~> 3.8.0)
41
+ rspec-mocks (3.8.1)
42
+ diff-lcs (>= 1.2.0, < 2.0)
43
+ rspec-support (~> 3.8.0)
44
+ rspec-support (3.8.2)
45
+ safe_yaml (1.0.5)
46
+ thread_safe (0.3.6)
47
+ timecop (0.8.1)
48
+ tzinfo (1.2.5)
49
+ thread_safe (~> 0.1)
50
+ vcr (5.0.0)
51
+ webmock (3.6.2)
52
+ addressable (>= 2.3.6)
53
+ crack (>= 0.3.2)
54
+ hashdiff (>= 0.4.0, < 2.0.0)
55
+
56
+ PLATFORMS
57
+ ruby
58
+
59
+ DEPENDENCIES
60
+ bundler (~> 2.0)
61
+ byebug (~> 9.0)
62
+ immobilienscout!
63
+ rake (~> 12.0)
64
+ rspec (~> 3.0)
65
+ timecop (~> 0.8.1)
66
+ vcr (~> 5.0)
67
+ webmock (~> 3.6)
68
+
69
+ BUNDLED WITH
70
+ 2.0.2
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Homeday GmbH
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "immobilienscout"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,39 @@
1
+ lib = File.expand_path('lib', __dir__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'immobilienscout/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'immobilienscout'
7
+ spec.version = Immobilienscout::VERSION
8
+ spec.authors = ['Homeday GmbH']
9
+ spec.email = ['backend-team@homeday.de']
10
+
11
+ spec.summary = 'A ruby gem to handle Immobilienscout API'
12
+ spec.description = 'This gem provides HTTP client to connect your app with Immobilienscout API'
13
+ spec.homepage = 'https://github.com/homeday-de/immobilienscout'
14
+ spec.license = 'MIT'
15
+
16
+ spec.metadata['homepage_uri'] = spec.homepage
17
+ spec.metadata['source_code_uri'] = 'https://github.com/homeday-de/immobilienscout'
18
+ spec.metadata['changelog_uri'] = 'https://github.com/homeday-de/immobilienscout/blob/master/CHANGELOG.md'
19
+
20
+ # Specify which files should be added to the gem when it is released.
21
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
23
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
24
+ end
25
+ spec.bindir = 'exe'
26
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
+ spec.require_paths = ['lib']
28
+
29
+ spec.add_dependency 'json'
30
+ spec.add_dependency 'multipart-post'
31
+ spec.add_dependency 'activesupport'
32
+ spec.add_development_dependency 'bundler', '~> 2.0'
33
+ spec.add_development_dependency 'rake', '~> 12.0'
34
+ spec.add_development_dependency 'rspec', '~> 3.0'
35
+ spec.add_development_dependency 'byebug', '~> 9.0'
36
+ spec.add_development_dependency 'timecop', '~> 0.8.1'
37
+ spec.add_development_dependency 'vcr', '~> 5.0'
38
+ spec.add_development_dependency 'webmock', '~> 3.6'
39
+ end
@@ -15,7 +15,7 @@ module Immobilienscout
15
15
 
16
16
  def execute_get_request(url, query_params)
17
17
  parsed_response = Immobilienscout::Request.new(url, query_params).get
18
- raise Immobilienscout::Errors::InvalidRequest, parsed_response.messages.map(&:messages) unless parsed_response.success?
18
+ raise Immobilienscout::Errors::InvalidRequest, Array.wrap(parsed_response.messages['message']) unless parsed_response.success?
19
19
 
20
20
  parsed_response
21
21
  end
@@ -0,0 +1,3 @@
1
+ module Immobilienscout
2
+ VERSION = '0.0.3'.freeze
3
+ end
metadata CHANGED
@@ -1,16 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: immobilienscout
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
- - Angela Guette
8
- - Wiebke Frey
9
- - Laura Garcia
7
+ - Homeday GmbH
10
8
  autorequire:
11
- bindir: bin
9
+ bindir: exe
12
10
  cert_chain: []
13
- date: 2019-03-11 00:00:00.000000000 Z
11
+ date: 2019-08-15 00:00:00.000000000 Z
14
12
  dependencies:
15
13
  - !ruby/object:Gem::Dependency
16
14
  name: json
@@ -54,28 +52,125 @@ dependencies:
54
52
  - - ">="
55
53
  - !ruby/object:Gem::Version
56
54
  version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.0'
62
+ type: :development
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: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '12.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '12.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '3.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '3.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: byebug
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '9.0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '9.0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: timecop
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 0.8.1
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: 0.8.1
125
+ - !ruby/object:Gem::Dependency
126
+ name: vcr
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '5.0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '5.0'
57
139
  - !ruby/object:Gem::Dependency
58
140
  name: webmock
59
141
  requirement: !ruby/object:Gem::Requirement
60
142
  requirements:
61
- - - ">="
143
+ - - "~>"
62
144
  - !ruby/object:Gem::Version
63
- version: '0'
64
- type: :runtime
145
+ version: '3.6'
146
+ type: :development
65
147
  prerelease: false
66
148
  version_requirements: !ruby/object:Gem::Requirement
67
149
  requirements:
68
- - - ">="
150
+ - - "~>"
69
151
  - !ruby/object:Gem::Version
70
- version: '0'
71
- description: This gem provides HTTP endpoints to connect your app with Immobilienscout
152
+ version: '3.6'
153
+ description: This gem provides HTTP client to connect your app with Immobilienscout
72
154
  API
73
- email: backend-team@homeday.de
155
+ email:
156
+ - backend-team@homeday.de
74
157
  executables: []
75
158
  extensions: []
76
159
  extra_rdoc_files: []
77
160
  files:
161
+ - ".gitignore"
162
+ - ".rspec"
163
+ - ".travis.yml"
164
+ - CHANGELOG.md
165
+ - CODE_OF_CONDUCT.md
166
+ - Gemfile
167
+ - Gemfile.lock
168
+ - LICENSE.txt
78
169
  - README.md
170
+ - Rakefile
171
+ - bin/console
172
+ - bin/setup
173
+ - immobilienscout.gemspec
79
174
  - lib/immobilienscout.rb
80
175
  - lib/immobilienscout/api/attachment.rb
81
176
  - lib/immobilienscout/api/property.rb
@@ -85,10 +180,14 @@ files:
85
180
  - lib/immobilienscout/errors/invalid_request.rb
86
181
  - lib/immobilienscout/request.rb
87
182
  - lib/immobilienscout/response_parser.rb
183
+ - lib/immobilienscout/version.rb
88
184
  homepage: https://github.com/homeday-de/immobilienscout
89
185
  licenses:
90
186
  - MIT
91
- metadata: {}
187
+ metadata:
188
+ homepage_uri: https://github.com/homeday-de/immobilienscout
189
+ source_code_uri: https://github.com/homeday-de/immobilienscout
190
+ changelog_uri: https://github.com/homeday-de/immobilienscout/blob/master/CHANGELOG.md
92
191
  post_install_message:
93
192
  rdoc_options: []
94
193
  require_paths:
@@ -104,8 +203,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
203
  - !ruby/object:Gem::Version
105
204
  version: '0'
106
205
  requirements: []
107
- rubyforge_project:
108
- rubygems_version: 2.6.14.3
206
+ rubygems_version: 3.0.4
109
207
  signing_key:
110
208
  specification_version: 4
111
209
  summary: A ruby gem to handle Immobilienscout API