big_check 0.1.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +69 -0
- data/Rakefile +6 -0
- data/big_check.gemspec +39 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/big_check.rb +4 -0
- data/lib/big_check/classifications.rb +27 -0
- data/lib/big_check/client.rb +55 -0
- data/lib/big_check/hcp.rb +95 -0
- data/lib/big_check/version.rb +3 -0
- metadata +115 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 857dcfd866ba529e8a8887660fcab8b73ca554f492994bb2540a574099ee878f
|
4
|
+
data.tar.gz: c694a2609fbef23defb9d5997a8cf63b9aefb2278e374f7dc04df97cf12cae77
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 2f8b762e6750e1fd79811199765ad2c23dca712ac19d5a03311008e7466333bf224f10ac869a8213560276e672df6075f210cb94d4fa85b7f6905b1d09940e1d
|
7
|
+
data.tar.gz: afaef0ac15f8f06c64b7fa6d8f0de37eb88c0f02155e9786ecc348ff76ac2ad1326ee812bdd7eb12cd8a14f7e738d805872332514eccd0b95c856090abea8487
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -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 boristoet80@gmail.com. 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
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 bo-oz
|
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/README.md
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
# BigCheck
|
2
|
+
|
3
|
+
BigCheck allows you a convenient way to lookup HCP information against the Dutch BIG register. The code currently only allows you to look-up doctor based on their registration number. This might be extended in the future.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Currently, this hasn't been released as a gem yet. For installation, you can add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'big_check', git:"https://github.com/bo-oz/big_check.git"
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
|
18
|
+
## Usage
|
19
|
+
|
20
|
+
Using the gem is pretty simple. You can call the `check_by_big` method directly after initiating the class:
|
21
|
+
|
22
|
+
```ruby
|
23
|
+
client = BigCheck::Client.new
|
24
|
+
client.check_by_big(123455)
|
25
|
+
```
|
26
|
+
|
27
|
+
This makes the call to the webservice and initializes a new object of the Client class. You can check validity of the result by calling the `valid?` method on the HCP object, that is set to the `hcp` getter. If this equals to true, you can then access the available information.
|
28
|
+
|
29
|
+
```ruby
|
30
|
+
client.hcp.valid?
|
31
|
+
# true
|
32
|
+
|
33
|
+
# currently the following information is available
|
34
|
+
client.hcp.birth_surname
|
35
|
+
client.hcp.mailing_name
|
36
|
+
client.hcp.prefix
|
37
|
+
client.hcp.initial
|
38
|
+
client.hcp.gender
|
39
|
+
client.hcp.profession
|
40
|
+
client.hcp.specialism
|
41
|
+
```
|
42
|
+
There's more information in the response, so you could access the response via:
|
43
|
+
|
44
|
+
```ruby
|
45
|
+
client.hcp.response
|
46
|
+
|
47
|
+
# Or access the raw original reponse, which is a Savon response object
|
48
|
+
client.response
|
49
|
+
```
|
50
|
+
|
51
|
+
That's it! Enjoy.
|
52
|
+
|
53
|
+
## Development
|
54
|
+
|
55
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
56
|
+
|
57
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
58
|
+
|
59
|
+
## Contributing
|
60
|
+
|
61
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/big_check. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
62
|
+
|
63
|
+
## License
|
64
|
+
|
65
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
66
|
+
|
67
|
+
## Code of Conduct
|
68
|
+
|
69
|
+
Everyone interacting in the BigCheck project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/big_check/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/big_check.gemspec
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "big_check/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "big_check"
|
8
|
+
spec.version = BigCheck::VERSION
|
9
|
+
spec.authors = ["bo-oz"]
|
10
|
+
spec.email = ["boristoet80@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Gem that allows for checks against the dutch BIG register}
|
13
|
+
spec.description = %q{Gem that allows for checks against the dutch BIG register}
|
14
|
+
spec.homepage = "http://www.bidregister.nl"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
19
|
+
# if spec.respond_to?(:metadata)
|
20
|
+
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
21
|
+
# else
|
22
|
+
# raise "RubyGems 2.0 or newer is required to protect against " \
|
23
|
+
# "public gem pushes."
|
24
|
+
# end
|
25
|
+
|
26
|
+
# Specify which files should be added to the gem when it is released.
|
27
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
28
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
29
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
30
|
+
end
|
31
|
+
spec.bindir = "exe"
|
32
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
33
|
+
spec.require_paths = ["lib"]
|
34
|
+
|
35
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
36
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
37
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
38
|
+
spec.add_runtime_dependency 'savon', '~> 2.0'
|
39
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "big_check"
|
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
data/lib/big_check.rb
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
module BigCheck
|
2
|
+
class Classifications
|
3
|
+
attr_accessor :response
|
4
|
+
|
5
|
+
def initialize response
|
6
|
+
@response = response[:get_ribiz_reference_data_response][:get_ribiz_reference_data_result] ||= {}
|
7
|
+
@valid = (@response.empty?) ? false : true
|
8
|
+
end
|
9
|
+
|
10
|
+
def professional_groups
|
11
|
+
return @response[:professional_groups][:professional_group]
|
12
|
+
end
|
13
|
+
|
14
|
+
def type_of_specialisms
|
15
|
+
return @response[:type_of_specialisms][:type_of_specialism]
|
16
|
+
end
|
17
|
+
|
18
|
+
def valid?
|
19
|
+
@valid
|
20
|
+
end
|
21
|
+
|
22
|
+
def invalid?
|
23
|
+
!@valid
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
module BigCheck
|
2
|
+
class Client
|
3
|
+
ENDPOINT = 'https://webservices.cibg.nl/Ribiz/OpenbaarV4.asmx?wsdl'
|
4
|
+
require 'savon'
|
5
|
+
attr_reader :hcp, :response, :client, :classifications
|
6
|
+
|
7
|
+
def initialize
|
8
|
+
@client = @client || Savon.client(wsdl: ENDPOINT, log: false, raise_errors: false)
|
9
|
+
end
|
10
|
+
|
11
|
+
def check_by_big(big_number)
|
12
|
+
message = {
|
13
|
+
"WebSite" => "Ribiz",
|
14
|
+
"RegistrationNumber" => big_number
|
15
|
+
}
|
16
|
+
begin
|
17
|
+
@response = @client.call(:list_hcp_approx4, message: message)
|
18
|
+
fail unless @response.http.code == 200
|
19
|
+
@hcp = BigCheck::HCP.new(@response.body)
|
20
|
+
return true
|
21
|
+
rescue Savon::SOAPFault => e
|
22
|
+
raise NotFoundError.new(e.message)
|
23
|
+
rescue Savon::HTTPError => e
|
24
|
+
raise ServerNotFoundError.new(e.message)
|
25
|
+
rescue => e
|
26
|
+
raise UnknownError.new(e.message)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def get_classifications
|
31
|
+
begin
|
32
|
+
@response = @client.call(:get_ribiz_reference_data)
|
33
|
+
fail unless @response.http.code == 200
|
34
|
+
@classifications = BigCheck::Classifications.new(@response.body)
|
35
|
+
rescue Savon::SOAPFault => e
|
36
|
+
raise NotFoundError.new(e.message)
|
37
|
+
rescue Savon::HTTPError => e
|
38
|
+
raise ServerNotFoundError.new(e.message)
|
39
|
+
rescue => e
|
40
|
+
raise UnknownError.new(e.message)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
45
|
+
|
46
|
+
class NotFoundError < StandardError
|
47
|
+
end
|
48
|
+
|
49
|
+
class ServerNotFoundError < StandardError
|
50
|
+
end
|
51
|
+
|
52
|
+
class UnknownError < StandardError
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
@@ -0,0 +1,95 @@
|
|
1
|
+
module BigCheck
|
2
|
+
class HCP
|
3
|
+
attr_accessor :response
|
4
|
+
|
5
|
+
SPECIALISM = {"2" => "Allergologie", "3" => "Anesthesiologie","4" => "Algemene gezondheidszorg",
|
6
|
+
"5" => "Medische milieukunde", "6" => "Tuberculosebestrijding", "7" => "Arbeid en gezondheid",
|
7
|
+
"8" => "Arbeid en gezondheid - bedrijfsgeneeskunde", "10" => "Cardiologie", "11" => "Cardio-thoracale chirurgie",
|
8
|
+
"12" => "Dermatologie en venerologie", "13" => "Leer van maag-darm-leverziekten", "14" => "Heelkunde",
|
9
|
+
"15" => "Huisartsgeneeskunde", "16" => "Inwendige geneeskunde", "17" => "Jeugdgezondheidszorg", "18" => "Keel- neus- oorheelkunde",
|
10
|
+
"19" => "Kindergeneeskunde", "20" => "Klinische chemie", "21" => "Klinische genetica", "22" => "Klinische geriatrie",
|
11
|
+
"23" => "Longziekten en tuberculose", "24" => "Medische microbiologie", "25" => "Neurochirurgie",
|
12
|
+
"26" => "Neurologie", "30" => "Nucleaire geneeskunde", "31" => "Oogheelkunde", "32" => "Orthopedie",
|
13
|
+
"33" => "Pathologie", "34" => "Plastische chirurgie", "35" => "Psychiatrie", "39" => "Radiologie",
|
14
|
+
"40" => "Radiotherapie", "41" => "Reumatologie", "42" => "Revalidatiegeneeskunde", "43" => "Maatschappij en gezondheid",
|
15
|
+
"44" => "Sportgeneeskunde", "45" => "Urologie", "46" => "Obstetrie en gynaecologie", "47" => "Verpleeghuisgeneeskunde",
|
16
|
+
"48" => "Arbeid en gezondheid - verzekeringsgeneeskunde", "50" => "Zenuw- en zielsziekten", "53" => "Dento-maxillaire orthopaedie",
|
17
|
+
"54" => "Mondziekten en kaakchirurgie", "55" => "Maatschappij en gezondheid", "56" => "Medische zorg voor verstandelijke gehandicapten",
|
18
|
+
"60" => "Ziekenhuisfarmacie", "61" => "Klinische psychologie", "62" => "Interne geneeskunde-allergologie"
|
19
|
+
}
|
20
|
+
|
21
|
+
PROFESSION = {"01" => "Artsen", "02" => "Tandartsen", "03" => "Verloskundigen", "04" => "Fysiotherapeuten",
|
22
|
+
"16" => "Psychotherapeuten", "17" => "Apothekers", "18" => "Apotheekhoudende artsen", "25" => "Gz-psychologen",
|
23
|
+
"30" => "Verpleegkundigen", "87" => "Optometristen", "88" => "Huidtherapeuten", "89" => "Dietisten",
|
24
|
+
"90" => "Ergotherapeuten", "91" => "Logopedisten", "92" => "Mondhygienisten", "93" => "Oefentherapeuten Mensendieck",
|
25
|
+
"94" => "Oefentherapeuten Cesar", "95" => "Orthoptisten", "96" => "Podotherapeuten", "97" => "Radiodiagnostisch laboranten",
|
26
|
+
"98" => "Radiotherapeutisch laboranten", "99" => "Onbekend", "83" => "Apothekersassistenten", "85" => "Tandprothetica",
|
27
|
+
"86" => "Verzorgenden individuele gezondheidszorg"
|
28
|
+
}
|
29
|
+
|
30
|
+
def initialize response
|
31
|
+
r = response[:list_hcp_approx4_result][:list_hcp_approx] ||= {}
|
32
|
+
@response = r[:list_hcp_approx4] unless r.empty?
|
33
|
+
@valid = (r.empty?) ? false : true
|
34
|
+
end
|
35
|
+
|
36
|
+
[:birth_surname, :mailing_name, :prefix, :initial, :gender].each do |method|
|
37
|
+
define_method "#{method}" do
|
38
|
+
return false unless valid?
|
39
|
+
return @response[method]
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def profession
|
44
|
+
return false if invalid? || @response[:article_registration].nil?
|
45
|
+
article = @response[:article_registration][:article_registration_ext_app]
|
46
|
+
article = [article] if article.is_a? Hash
|
47
|
+
arr = []
|
48
|
+
article.each do |art|
|
49
|
+
result = {}
|
50
|
+
result[:code] = art[:professional_group_code]
|
51
|
+
result[:value] = PROFESSION[art[:professional_group_code]]
|
52
|
+
result[:from] = art[:article_registration_start_date]
|
53
|
+
result[:to] =art[:article_registration_end_date]
|
54
|
+
arr << result
|
55
|
+
end
|
56
|
+
return arr
|
57
|
+
end
|
58
|
+
|
59
|
+
def specialism
|
60
|
+
return false if invalid? || @response[:specialism].nil?
|
61
|
+
article = @response[:specialism][:specialism_ext_app1]
|
62
|
+
article = [article] if article.is_a? Hash
|
63
|
+
arr = []
|
64
|
+
article.each do |art|
|
65
|
+
result = {}
|
66
|
+
result[:code] = art[:type_of_specialism_id]
|
67
|
+
result[:value] = SPECIALISM[art[:type_of_specialism_id]]
|
68
|
+
arr << result
|
69
|
+
end
|
70
|
+
return arr
|
71
|
+
end
|
72
|
+
|
73
|
+
def valid?
|
74
|
+
@valid
|
75
|
+
end
|
76
|
+
|
77
|
+
def invalid?
|
78
|
+
!@valid
|
79
|
+
end
|
80
|
+
|
81
|
+
alias_method :name, :birth_surname
|
82
|
+
|
83
|
+
private
|
84
|
+
|
85
|
+
def loop_through_values object, item, lookup
|
86
|
+
array = []
|
87
|
+
object.each do |o|
|
88
|
+
code = o[item]
|
89
|
+
array.push({code: code, value: lookup[code]})
|
90
|
+
end
|
91
|
+
array
|
92
|
+
end
|
93
|
+
|
94
|
+
end
|
95
|
+
end
|
metadata
ADDED
@@ -0,0 +1,115 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: big_check
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.11
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- bo-oz
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-05-24 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.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
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: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: savon
|
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
|
+
description: Gem that allows for checks against the dutch BIG register
|
70
|
+
email:
|
71
|
+
- boristoet80@gmail.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- ".rspec"
|
78
|
+
- ".travis.yml"
|
79
|
+
- CODE_OF_CONDUCT.md
|
80
|
+
- Gemfile
|
81
|
+
- LICENSE.txt
|
82
|
+
- README.md
|
83
|
+
- Rakefile
|
84
|
+
- big_check.gemspec
|
85
|
+
- bin/console
|
86
|
+
- bin/setup
|
87
|
+
- lib/big_check.rb
|
88
|
+
- lib/big_check/classifications.rb
|
89
|
+
- lib/big_check/client.rb
|
90
|
+
- lib/big_check/hcp.rb
|
91
|
+
- lib/big_check/version.rb
|
92
|
+
homepage: http://www.bidregister.nl
|
93
|
+
licenses:
|
94
|
+
- MIT
|
95
|
+
metadata: {}
|
96
|
+
post_install_message:
|
97
|
+
rdoc_options: []
|
98
|
+
require_paths:
|
99
|
+
- lib
|
100
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ">="
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
requirements: []
|
111
|
+
rubygems_version: 3.0.3
|
112
|
+
signing_key:
|
113
|
+
specification_version: 4
|
114
|
+
summary: Gem that allows for checks against the dutch BIG register
|
115
|
+
test_files: []
|