gbizinfo 0.1.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 (61) hide show
  1. checksums.yaml +7 -0
  2. data/.openapi-generator/FILES +48 -0
  3. data/.openapi-generator/VERSION +1 -0
  4. data/.openapi-generator-ignore +30 -0
  5. data/.rspec +3 -0
  6. data/.rubocop.yml +13 -0
  7. data/CHANGELOG.md +3 -0
  8. data/CODE_OF_CONDUCT.md +84 -0
  9. data/Gemfile +12 -0
  10. data/Gemfile.lock +64 -0
  11. data/LICENSE.txt +21 -0
  12. data/README.md +121 -0
  13. data/Rakefile +12 -0
  14. data/bin/console +15 -0
  15. data/bin/setup +8 -0
  16. data/docs/ApiError.md +20 -0
  17. data/docs/CertificationInfo.md +30 -0
  18. data/docs/CommendationInfo.md +26 -0
  19. data/docs/CompatibilityOfChildcareAndWork.md +24 -0
  20. data/docs/Finance.md +24 -0
  21. data/docs/GBizINFORESTAPIApi.md +678 -0
  22. data/docs/GBizINFORESTAPIPeriodSpecifiedSearchApi.md +591 -0
  23. data/docs/HojinInfo.md +76 -0
  24. data/docs/HojinInfoResponse.md +24 -0
  25. data/docs/HojinInfoUpdateInfoResponse.md +30 -0
  26. data/docs/MajorShareholders.md +20 -0
  27. data/docs/ManagementIndex.md +66 -0
  28. data/docs/PatentInfo.md +26 -0
  29. data/docs/ProcurementInfo.md +26 -0
  30. data/docs/SubsidyInfo.md +32 -0
  31. data/docs/WomenActivityInfos.md +28 -0
  32. data/docs/WorkplaceBaseInfos.md +28 -0
  33. data/docs/WorkplaceInfoBean.md +22 -0
  34. data/gbizinfo.gemspec +37 -0
  35. data/git_push.sh +57 -0
  36. data/lib/gbizinfo/api/g_biz_inforestapi_api.rb +748 -0
  37. data/lib/gbizinfo/api/g_biz_inforestapi_period_specified_search_api.rb +670 -0
  38. data/lib/gbizinfo/api_client.rb +391 -0
  39. data/lib/gbizinfo/api_error.rb +58 -0
  40. data/lib/gbizinfo/configuration.rb +290 -0
  41. data/lib/gbizinfo/models/api_error.rb +225 -0
  42. data/lib/gbizinfo/models/certification_info.rb +275 -0
  43. data/lib/gbizinfo/models/commendation_info.rb +255 -0
  44. data/lib/gbizinfo/models/compatibility_of_childcare_and_work.rb +245 -0
  45. data/lib/gbizinfo/models/finance.rb +249 -0
  46. data/lib/gbizinfo/models/hojin_info.rb +515 -0
  47. data/lib/gbizinfo/models/hojin_info_response.rb +249 -0
  48. data/lib/gbizinfo/models/hojin_info_update_info_response.rb +279 -0
  49. data/lib/gbizinfo/models/major_shareholders.rb +225 -0
  50. data/lib/gbizinfo/models/management_index.rb +455 -0
  51. data/lib/gbizinfo/models/patent_info.rb +257 -0
  52. data/lib/gbizinfo/models/procurement_info.rb +257 -0
  53. data/lib/gbizinfo/models/subsidy_info.rb +287 -0
  54. data/lib/gbizinfo/models/women_activity_infos.rb +265 -0
  55. data/lib/gbizinfo/models/workplace_base_infos.rb +265 -0
  56. data/lib/gbizinfo/models/workplace_info_bean.rb +232 -0
  57. data/lib/gbizinfo/version.rb +15 -0
  58. data/lib/gbizinfo.rb +57 -0
  59. data/openapi/root.yaml +1377 -0
  60. data/sig/gbizinfo.rbs +4 -0
  61. metadata +105 -0
data/sig/gbizinfo.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Gbizinfo
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,105 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gbizinfo
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - uichi
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-09-06 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: 経済産業省が提供するgBizInfoのRuby製クライアントAPI
14
+ email:
15
+ - 37263474+uichi@users.noreply.github.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".openapi-generator-ignore"
21
+ - ".openapi-generator/FILES"
22
+ - ".openapi-generator/VERSION"
23
+ - ".rspec"
24
+ - ".rubocop.yml"
25
+ - CHANGELOG.md
26
+ - CODE_OF_CONDUCT.md
27
+ - Gemfile
28
+ - Gemfile.lock
29
+ - LICENSE.txt
30
+ - README.md
31
+ - Rakefile
32
+ - bin/console
33
+ - bin/setup
34
+ - docs/ApiError.md
35
+ - docs/CertificationInfo.md
36
+ - docs/CommendationInfo.md
37
+ - docs/CompatibilityOfChildcareAndWork.md
38
+ - docs/Finance.md
39
+ - docs/GBizINFORESTAPIApi.md
40
+ - docs/GBizINFORESTAPIPeriodSpecifiedSearchApi.md
41
+ - docs/HojinInfo.md
42
+ - docs/HojinInfoResponse.md
43
+ - docs/HojinInfoUpdateInfoResponse.md
44
+ - docs/MajorShareholders.md
45
+ - docs/ManagementIndex.md
46
+ - docs/PatentInfo.md
47
+ - docs/ProcurementInfo.md
48
+ - docs/SubsidyInfo.md
49
+ - docs/WomenActivityInfos.md
50
+ - docs/WorkplaceBaseInfos.md
51
+ - docs/WorkplaceInfoBean.md
52
+ - gbizinfo.gemspec
53
+ - git_push.sh
54
+ - lib/gbizinfo.rb
55
+ - lib/gbizinfo/api/g_biz_inforestapi_api.rb
56
+ - lib/gbizinfo/api/g_biz_inforestapi_period_specified_search_api.rb
57
+ - lib/gbizinfo/api_client.rb
58
+ - lib/gbizinfo/api_error.rb
59
+ - lib/gbizinfo/configuration.rb
60
+ - lib/gbizinfo/models/api_error.rb
61
+ - lib/gbizinfo/models/certification_info.rb
62
+ - lib/gbizinfo/models/commendation_info.rb
63
+ - lib/gbizinfo/models/compatibility_of_childcare_and_work.rb
64
+ - lib/gbizinfo/models/finance.rb
65
+ - lib/gbizinfo/models/hojin_info.rb
66
+ - lib/gbizinfo/models/hojin_info_response.rb
67
+ - lib/gbizinfo/models/hojin_info_update_info_response.rb
68
+ - lib/gbizinfo/models/major_shareholders.rb
69
+ - lib/gbizinfo/models/management_index.rb
70
+ - lib/gbizinfo/models/patent_info.rb
71
+ - lib/gbizinfo/models/procurement_info.rb
72
+ - lib/gbizinfo/models/subsidy_info.rb
73
+ - lib/gbizinfo/models/women_activity_infos.rb
74
+ - lib/gbizinfo/models/workplace_base_infos.rb
75
+ - lib/gbizinfo/models/workplace_info_bean.rb
76
+ - lib/gbizinfo/version.rb
77
+ - openapi/root.yaml
78
+ - sig/gbizinfo.rbs
79
+ homepage: https://github.com/uichi/gbizinfo
80
+ licenses:
81
+ - MIT
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
86
+ post_install_message:
87
+ rdoc_options: []
88
+ require_paths:
89
+ - lib
90
+ required_ruby_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: 2.6.0
95
+ required_rubygems_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ requirements: []
101
+ rubygems_version: 3.4.12
102
+ signing_key:
103
+ specification_version: 4
104
+ summary: gBizInfoのRuby SDK
105
+ test_files: []