gbizinfo 0.1.0 → 0.2.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile +6 -9
- data/Gemfile.lock +23 -6
- data/README.md +4 -4
- data/Rakefile +7 -9
- data/gbizinfo.gemspec +37 -36
- data/lib/gbizinfo/version.rb +1 -1
- data/pkg/gbizinfo-0.1.0.gem +0 -0
- data/pkg/gbizinfo-0.2.0.gem +0 -0
- data/spec/api/g_biz_inforestapi_api_spec.rb +185 -0
- data/spec/api/g_biz_inforestapi_period_specified_search_api_spec.rb +155 -0
- data/spec/api_client_spec.rb +228 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/gbizinfo_spec.rb +7 -0
- data/spec/models/api_error_spec.rb +40 -0
- data/spec/models/certification_info_spec.rb +70 -0
- data/spec/models/commendation_info_spec.rb +58 -0
- data/spec/models/compatibility_of_childcare_and_work_spec.rb +52 -0
- data/spec/models/finance_spec.rb +52 -0
- data/spec/models/hojin_info_response_spec.rb +52 -0
- data/spec/models/hojin_info_spec.rb +208 -0
- data/spec/models/hojin_info_update_info_response_spec.rb +70 -0
- data/spec/models/major_shareholders_spec.rb +40 -0
- data/spec/models/management_index_spec.rb +178 -0
- data/spec/models/patent_info_spec.rb +58 -0
- data/spec/models/procurement_info_spec.rb +58 -0
- data/spec/models/subsidy_info_spec.rb +76 -0
- data/spec/models/women_activity_infos_spec.rb +64 -0
- data/spec/models/workplace_base_infos_spec.rb +64 -0
- data/spec/models/workplace_info_bean_spec.rb +46 -0
- data/spec/spec_helper.rb +111 -0
- metadata +101 -22
- data/.openapi-generator/FILES +0 -48
- data/.openapi-generator/VERSION +0 -1
- data/.openapi-generator-ignore +0 -30
- data/.rspec +0 -3
- data/.rubocop.yml +0 -13
@@ -0,0 +1,76 @@
|
|
1
|
+
=begin
|
2
|
+
#gBizINFO REST API
|
3
|
+
|
4
|
+
#<div>各REST APIはHTTPリクエストヘッダ\"X-hojinInfo-api-token\"に動作確認用のAPIトークン\"DTcLxzo1lZaUYaQPVdSRxdS4MzlXNCs4\"を指定して動作を確認することができます。</div><div>※動作確認用のAPIトークンはこのページでの動作確認でのみ使用してください。</div><div>※REST APIを利用する際は必ず、<a href=\"./api_registration/form\">Web API利用申請</a>を行い、APIトークンを取得してください。</div>
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Gbizinfo::SubsidyInfo
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Gbizinfo::SubsidyInfo do
|
21
|
+
let(:instance) { Gbizinfo::SubsidyInfo.new }
|
22
|
+
|
23
|
+
describe 'test an instance of SubsidyInfo' do
|
24
|
+
it 'should create an instance of SubsidyInfo' do
|
25
|
+
expect(instance).to be_instance_of(Gbizinfo::SubsidyInfo)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "amount"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "date_of_approval"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "government_departments"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "joint_signatures"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "note"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'test attribute "subsidy_resource"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "target"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe 'test attribute "title"' do
|
71
|
+
it 'should work' do
|
72
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
=begin
|
2
|
+
#gBizINFO REST API
|
3
|
+
|
4
|
+
#<div>各REST APIはHTTPリクエストヘッダ\"X-hojinInfo-api-token\"に動作確認用のAPIトークン\"DTcLxzo1lZaUYaQPVdSRxdS4MzlXNCs4\"を指定して動作を確認することができます。</div><div>※動作確認用のAPIトークンはこのページでの動作確認でのみ使用してください。</div><div>※REST APIを利用する際は必ず、<a href=\"./api_registration/form\">Web API利用申請</a>を行い、APIトークンを取得してください。</div>
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Gbizinfo::WomenActivityInfos
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Gbizinfo::WomenActivityInfos do
|
21
|
+
let(:instance) { Gbizinfo::WomenActivityInfos.new }
|
22
|
+
|
23
|
+
describe 'test an instance of WomenActivityInfos' do
|
24
|
+
it 'should create an instance of WomenActivityInfos' do
|
25
|
+
expect(instance).to be_instance_of(Gbizinfo::WomenActivityInfos)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "female_share_of_manager"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "female_share_of_officers"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "female_workers_proportion"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "female_workers_proportion_type"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "gender_total_of_manager"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'test attribute "gender_total_of_officers"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
=begin
|
2
|
+
#gBizINFO REST API
|
3
|
+
|
4
|
+
#<div>各REST APIはHTTPリクエストヘッダ\"X-hojinInfo-api-token\"に動作確認用のAPIトークン\"DTcLxzo1lZaUYaQPVdSRxdS4MzlXNCs4\"を指定して動作を確認することができます。</div><div>※動作確認用のAPIトークンはこのページでの動作確認でのみ使用してください。</div><div>※REST APIを利用する際は必ず、<a href=\"./api_registration/form\">Web API利用申請</a>を行い、APIトークンを取得してください。</div>
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Gbizinfo::WorkplaceBaseInfos
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Gbizinfo::WorkplaceBaseInfos do
|
21
|
+
let(:instance) { Gbizinfo::WorkplaceBaseInfos.new }
|
22
|
+
|
23
|
+
describe 'test an instance of WorkplaceBaseInfos' do
|
24
|
+
it 'should create an instance of WorkplaceBaseInfos' do
|
25
|
+
expect(instance).to be_instance_of(Gbizinfo::WorkplaceBaseInfos)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "average_age"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "average_continuous_service_years"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "average_continuous_service_years_female"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "average_continuous_service_years_male"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "average_continuous_service_years_type"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'test attribute "month_average_predetermined_overtime_hours"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
=begin
|
2
|
+
#gBizINFO REST API
|
3
|
+
|
4
|
+
#<div>各REST APIはHTTPリクエストヘッダ\"X-hojinInfo-api-token\"に動作確認用のAPIトークン\"DTcLxzo1lZaUYaQPVdSRxdS4MzlXNCs4\"を指定して動作を確認することができます。</div><div>※動作確認用のAPIトークンはこのページでの動作確認でのみ使用してください。</div><div>※REST APIを利用する際は必ず、<a href=\"./api_registration/form\">Web API利用申請</a>を行い、APIトークンを取得してください。</div>
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Gbizinfo::WorkplaceInfoBean
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Gbizinfo::WorkplaceInfoBean do
|
21
|
+
let(:instance) { Gbizinfo::WorkplaceInfoBean.new }
|
22
|
+
|
23
|
+
describe 'test an instance of WorkplaceInfoBean' do
|
24
|
+
it 'should create an instance of WorkplaceInfoBean' do
|
25
|
+
expect(instance).to be_instance_of(Gbizinfo::WorkplaceInfoBean)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "base_infos"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "compatibility_of_childcare_and_work"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "women_activity_infos"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,111 @@
|
|
1
|
+
=begin
|
2
|
+
#gBizINFO REST API
|
3
|
+
|
4
|
+
#<div>各REST APIはHTTPリクエストヘッダX-hojinInfo-api-tokenに動作確認用のAPIトークンDTcLxzo1lZaUYaQPVdSRxdS4MzlXNCs4を指定して動作を確認することができます。</div><div>※動作確認用のAPIトークンはこのページでの動作確認でのみ使用してください。</div><div>※REST APIを利用する際は必ず、<a href='https://info.gbiz.go.jp/hojin/api_registration/form'>Web API利用申請</a>を行い、APIトークンを取得してください。</div>
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.0.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
# load the gem
|
14
|
+
require 'gbizinfo'
|
15
|
+
|
16
|
+
# The following was generated by the `rspec --init` command. Conventionally, all
|
17
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
18
|
+
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
19
|
+
# this file to always be loaded, without a need to explicitly require it in any
|
20
|
+
# files.
|
21
|
+
#
|
22
|
+
# Given that it is always loaded, you are encouraged to keep this file as
|
23
|
+
# light-weight as possible. Requiring heavyweight dependencies from this file
|
24
|
+
# will add to the boot time of your test suite on EVERY test run, even for an
|
25
|
+
# individual file that may not need all of that loaded. Instead, consider making
|
26
|
+
# a separate helper file that requires the additional dependencies and performs
|
27
|
+
# the additional setup, and require it from the spec files that actually need
|
28
|
+
# it.
|
29
|
+
#
|
30
|
+
# The `.rspec` file also contains a few flags that are not defaults but that
|
31
|
+
# users commonly want.
|
32
|
+
#
|
33
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
34
|
+
RSpec.configure do |config|
|
35
|
+
# rspec-expectations config goes here. You can use an alternate
|
36
|
+
# assertion/expectation library such as wrong or the stdlib/minitest
|
37
|
+
# assertions if you prefer.
|
38
|
+
config.expect_with :rspec do |expectations|
|
39
|
+
# This option will default to `true` in RSpec 4. It makes the `description`
|
40
|
+
# and `failure_message` of custom matchers include text for helper methods
|
41
|
+
# defined using `chain`, e.g.:
|
42
|
+
# be_bigger_than(2).and_smaller_than(4).description
|
43
|
+
# # => "be bigger than 2 and smaller than 4"
|
44
|
+
# ...rather than:
|
45
|
+
# # => "be bigger than 2"
|
46
|
+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
|
47
|
+
end
|
48
|
+
|
49
|
+
# rspec-mocks config goes here. You can use an alternate test double
|
50
|
+
# library (such as bogus or mocha) by changing the `mock_with` option here.
|
51
|
+
config.mock_with :rspec do |mocks|
|
52
|
+
# Prevents you from mocking or stubbing a method that does not exist on
|
53
|
+
# a real object. This is generally recommended, and will default to
|
54
|
+
# `true` in RSpec 4.
|
55
|
+
mocks.verify_partial_doubles = true
|
56
|
+
end
|
57
|
+
|
58
|
+
# The settings below are suggested to provide a good initial experience
|
59
|
+
# with RSpec, but feel free to customize to your heart's content.
|
60
|
+
=begin
|
61
|
+
# These two settings work together to allow you to limit a spec run
|
62
|
+
# to individual examples or groups you care about by tagging them with
|
63
|
+
# `:focus` metadata. When nothing is tagged with `:focus`, all examples
|
64
|
+
# get run.
|
65
|
+
config.filter_run :focus
|
66
|
+
config.run_all_when_everything_filtered = true
|
67
|
+
|
68
|
+
# Allows RSpec to persist some state between runs in order to support
|
69
|
+
# the `--only-failures` and `--next-failure` CLI options. We recommend
|
70
|
+
# you configure your source control system to ignore this file.
|
71
|
+
config.example_status_persistence_file_path = "spec/examples.txt"
|
72
|
+
|
73
|
+
# Limits the available syntax to the non-monkey patched syntax that is
|
74
|
+
# recommended. For more details, see:
|
75
|
+
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
|
76
|
+
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
|
77
|
+
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
|
78
|
+
config.disable_monkey_patching!
|
79
|
+
|
80
|
+
# This setting enables warnings. It's recommended, but in some cases may
|
81
|
+
# be too noisy due to issues in dependencies.
|
82
|
+
config.warnings = true
|
83
|
+
|
84
|
+
# Many RSpec users commonly either run the entire suite or an individual
|
85
|
+
# file, and it's useful to allow more verbose output when running an
|
86
|
+
# individual spec file.
|
87
|
+
if config.files_to_run.one?
|
88
|
+
# Use the documentation formatter for detailed output,
|
89
|
+
# unless a formatter has already been configured
|
90
|
+
# (e.g. via a command-line flag).
|
91
|
+
config.default_formatter = 'doc'
|
92
|
+
end
|
93
|
+
|
94
|
+
# Print the 10 slowest examples and example groups at the
|
95
|
+
# end of the spec run, to help surface which specs are running
|
96
|
+
# particularly slow.
|
97
|
+
config.profile_examples = 10
|
98
|
+
|
99
|
+
# Run specs in random order to surface order dependencies. If you find an
|
100
|
+
# order dependency and want to debug it, you can fix the order by providing
|
101
|
+
# the seed, which is printed after each run.
|
102
|
+
# --seed 1234
|
103
|
+
config.order = :random
|
104
|
+
|
105
|
+
# Seed global randomization in this process using the `--seed` CLI option.
|
106
|
+
# Setting this allows you to use `--seed` to deterministically reproduce
|
107
|
+
# test failures related to randomization by passing the same `--seed` value
|
108
|
+
# as the one that triggered the failure.
|
109
|
+
Kernel.srand config.seed
|
110
|
+
=end
|
111
|
+
end
|
metadata
CHANGED
@@ -1,27 +1,63 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gbizinfo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-09-
|
12
|
-
dependencies:
|
13
|
-
|
11
|
+
date: 2023-09-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: typhoeus
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.0'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 1.0.1
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.0'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 1.0.1
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: rspec
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '3.6'
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 3.6.0
|
43
|
+
type: :development
|
44
|
+
prerelease: false
|
45
|
+
version_requirements: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - "~>"
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: '3.6'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 3.6.0
|
53
|
+
description: "<div>各REST APIはHTTPリクエストヘッダX-hojinInfo-api-tokenに動作確認用のAPIトークンDTcLxzo1lZaUYaQPVdSRxdS4MzlXNCs4を指定して動作を確認することができます。</div><div>※動作確認用のAPIトークンはこのページでの動作確認でのみ使用してください。</div><div>※REST
|
54
|
+
APIを利用する際は必ず、<a href='https://info.gbiz.go.jp/hojin/api_registration/form'>Web API利用申請</a>を行い、APIトークンを取得してください。</div>"
|
14
55
|
email:
|
15
|
-
-
|
56
|
+
- ''
|
16
57
|
executables: []
|
17
58
|
extensions: []
|
18
59
|
extra_rdoc_files: []
|
19
60
|
files:
|
20
|
-
- ".openapi-generator-ignore"
|
21
|
-
- ".openapi-generator/FILES"
|
22
|
-
- ".openapi-generator/VERSION"
|
23
|
-
- ".rspec"
|
24
|
-
- ".rubocop.yml"
|
25
61
|
- CHANGELOG.md
|
26
62
|
- CODE_OF_CONDUCT.md
|
27
63
|
- Gemfile
|
@@ -75,14 +111,35 @@ files:
|
|
75
111
|
- lib/gbizinfo/models/workplace_info_bean.rb
|
76
112
|
- lib/gbizinfo/version.rb
|
77
113
|
- openapi/root.yaml
|
114
|
+
- pkg/gbizinfo-0.1.0.gem
|
115
|
+
- pkg/gbizinfo-0.2.0.gem
|
78
116
|
- sig/gbizinfo.rbs
|
79
|
-
|
117
|
+
- spec/api/g_biz_inforestapi_api_spec.rb
|
118
|
+
- spec/api/g_biz_inforestapi_period_specified_search_api_spec.rb
|
119
|
+
- spec/api_client_spec.rb
|
120
|
+
- spec/configuration_spec.rb
|
121
|
+
- spec/gbizinfo_spec.rb
|
122
|
+
- spec/models/api_error_spec.rb
|
123
|
+
- spec/models/certification_info_spec.rb
|
124
|
+
- spec/models/commendation_info_spec.rb
|
125
|
+
- spec/models/compatibility_of_childcare_and_work_spec.rb
|
126
|
+
- spec/models/finance_spec.rb
|
127
|
+
- spec/models/hojin_info_response_spec.rb
|
128
|
+
- spec/models/hojin_info_spec.rb
|
129
|
+
- spec/models/hojin_info_update_info_response_spec.rb
|
130
|
+
- spec/models/major_shareholders_spec.rb
|
131
|
+
- spec/models/management_index_spec.rb
|
132
|
+
- spec/models/patent_info_spec.rb
|
133
|
+
- spec/models/procurement_info_spec.rb
|
134
|
+
- spec/models/subsidy_info_spec.rb
|
135
|
+
- spec/models/women_activity_infos_spec.rb
|
136
|
+
- spec/models/workplace_base_infos_spec.rb
|
137
|
+
- spec/models/workplace_info_bean_spec.rb
|
138
|
+
- spec/spec_helper.rb
|
139
|
+
homepage: https://openapi-generator.tech
|
80
140
|
licenses:
|
81
|
-
-
|
82
|
-
metadata:
|
83
|
-
homepage_uri: https://github.com/uichi/gbizinfo
|
84
|
-
source_code_uri: https://github.com/uichi/gbizinfo
|
85
|
-
changelog_uri: https://github.com/uichi/gbizinfo/blob/main/CHANGELOG.md
|
141
|
+
- Unlicense
|
142
|
+
metadata: {}
|
86
143
|
post_install_message:
|
87
144
|
rdoc_options: []
|
88
145
|
require_paths:
|
@@ -91,15 +148,37 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
91
148
|
requirements:
|
92
149
|
- - ">="
|
93
150
|
- !ruby/object:Gem::Version
|
94
|
-
version: 2.
|
151
|
+
version: '2.7'
|
95
152
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
96
153
|
requirements:
|
97
154
|
- - ">="
|
98
155
|
- !ruby/object:Gem::Version
|
99
156
|
version: '0'
|
100
157
|
requirements: []
|
101
|
-
rubygems_version: 3.
|
158
|
+
rubygems_version: 3.3.7
|
102
159
|
signing_key:
|
103
160
|
specification_version: 4
|
104
|
-
summary:
|
105
|
-
test_files:
|
161
|
+
summary: gBizINFO REST API Ruby Gem
|
162
|
+
test_files:
|
163
|
+
- spec/api/g_biz_inforestapi_period_specified_search_api_spec.rb
|
164
|
+
- spec/api/g_biz_inforestapi_api_spec.rb
|
165
|
+
- spec/api_client_spec.rb
|
166
|
+
- spec/configuration_spec.rb
|
167
|
+
- spec/gbizinfo_spec.rb
|
168
|
+
- spec/models/management_index_spec.rb
|
169
|
+
- spec/models/patent_info_spec.rb
|
170
|
+
- spec/models/hojin_info_update_info_response_spec.rb
|
171
|
+
- spec/models/certification_info_spec.rb
|
172
|
+
- spec/models/workplace_base_infos_spec.rb
|
173
|
+
- spec/models/hojin_info_spec.rb
|
174
|
+
- spec/models/api_error_spec.rb
|
175
|
+
- spec/models/finance_spec.rb
|
176
|
+
- spec/models/commendation_info_spec.rb
|
177
|
+
- spec/models/women_activity_infos_spec.rb
|
178
|
+
- spec/models/subsidy_info_spec.rb
|
179
|
+
- spec/models/compatibility_of_childcare_and_work_spec.rb
|
180
|
+
- spec/models/hojin_info_response_spec.rb
|
181
|
+
- spec/models/workplace_info_bean_spec.rb
|
182
|
+
- spec/models/major_shareholders_spec.rb
|
183
|
+
- spec/models/procurement_info_spec.rb
|
184
|
+
- spec/spec_helper.rb
|
data/.openapi-generator/FILES
DELETED
@@ -1,48 +0,0 @@
|
|
1
|
-
.gitlab-ci.yml
|
2
|
-
.travis.yml
|
3
|
-
README.md
|
4
|
-
docs/ApiError.md
|
5
|
-
docs/CertificationInfo.md
|
6
|
-
docs/CommendationInfo.md
|
7
|
-
docs/CompatibilityOfChildcareAndWork.md
|
8
|
-
docs/Finance.md
|
9
|
-
docs/GBizINFORESTAPIApi.md
|
10
|
-
docs/GBizINFORESTAPIPeriodSpecifiedSearchApi.md
|
11
|
-
docs/HojinInfo.md
|
12
|
-
docs/HojinInfoResponse.md
|
13
|
-
docs/HojinInfoUpdateInfoResponse.md
|
14
|
-
docs/MajorShareholders.md
|
15
|
-
docs/ManagementIndex.md
|
16
|
-
docs/PatentInfo.md
|
17
|
-
docs/ProcurementInfo.md
|
18
|
-
docs/SubsidyInfo.md
|
19
|
-
docs/WomenActivityInfos.md
|
20
|
-
docs/WorkplaceBaseInfos.md
|
21
|
-
docs/WorkplaceInfoBean.md
|
22
|
-
git_push.sh
|
23
|
-
lib/gbizinfo.rb
|
24
|
-
lib/gbizinfo/api/g_biz_inforestapi_api.rb
|
25
|
-
lib/gbizinfo/api/g_biz_inforestapi_period_specified_search_api.rb
|
26
|
-
lib/gbizinfo/api_client.rb
|
27
|
-
lib/gbizinfo/api_error.rb
|
28
|
-
lib/gbizinfo/configuration.rb
|
29
|
-
lib/gbizinfo/models/api_error.rb
|
30
|
-
lib/gbizinfo/models/certification_info.rb
|
31
|
-
lib/gbizinfo/models/commendation_info.rb
|
32
|
-
lib/gbizinfo/models/compatibility_of_childcare_and_work.rb
|
33
|
-
lib/gbizinfo/models/finance.rb
|
34
|
-
lib/gbizinfo/models/hojin_info.rb
|
35
|
-
lib/gbizinfo/models/hojin_info_response.rb
|
36
|
-
lib/gbizinfo/models/hojin_info_update_info_response.rb
|
37
|
-
lib/gbizinfo/models/major_shareholders.rb
|
38
|
-
lib/gbizinfo/models/management_index.rb
|
39
|
-
lib/gbizinfo/models/patent_info.rb
|
40
|
-
lib/gbizinfo/models/procurement_info.rb
|
41
|
-
lib/gbizinfo/models/subsidy_info.rb
|
42
|
-
lib/gbizinfo/models/women_activity_infos.rb
|
43
|
-
lib/gbizinfo/models/workplace_base_infos.rb
|
44
|
-
lib/gbizinfo/models/workplace_info_bean.rb
|
45
|
-
lib/gbizinfo/version.rb
|
46
|
-
spec/api_client_spec.rb
|
47
|
-
spec/configuration_spec.rb
|
48
|
-
spec/spec_helper.rb
|
data/.openapi-generator/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
7.0.0
|
data/.openapi-generator-ignore
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
# OpenAPI Generator Ignore
|
2
|
-
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
|
3
|
-
|
4
|
-
# Use this file to prevent files from being overwritten by the generator.
|
5
|
-
# The patterns follow closely to .gitignore or .dockerignore.
|
6
|
-
|
7
|
-
# As an example, the C# client generator defines ApiClient.cs.
|
8
|
-
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
|
9
|
-
#ApiClient.cs
|
10
|
-
|
11
|
-
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
|
12
|
-
#foo/*/qux
|
13
|
-
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
|
14
|
-
|
15
|
-
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
|
16
|
-
#foo/**/qux
|
17
|
-
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
|
18
|
-
|
19
|
-
# You can also negate patterns with an exclamation (!).
|
20
|
-
# For example, you can ignore all files in a docs folder with the file extension .md:
|
21
|
-
#docs/*.md
|
22
|
-
# Then explicitly reverse the ignore rule for a single file:
|
23
|
-
#!docs/README.md
|
24
|
-
|
25
|
-
.gitignore
|
26
|
-
.rspec
|
27
|
-
.rubocop.yml
|
28
|
-
Gemfile
|
29
|
-
gbizinfo.gemspec
|
30
|
-
Rakefile
|
data/.rspec
DELETED
data/.rubocop.yml
DELETED