jesse 0.0.5

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 228445c6a61e2e03acb4f79dbafc00060f85cf0e
4
+ data.tar.gz: eae0fcd3144ed916375ab48b048d9ea9b5625f87
5
+ SHA512:
6
+ metadata.gz: 9b8a8c8a7791df4bfda01a4760a33389e028430dc1d644677d40f11c607f403422c5effd597d4e02f21ea2bb0efe4c7c8e99c6f6332e75eb8935b5fbeb5f3e27
7
+ data.tar.gz: d3e3c83b426537d7696e1b81ce9fd92ab3cbd5d028cf131a9f415566585c7d9d81a450b810e43ce131e998baf6ff404eaaee31af50c31523bd751e46b7bdbf26
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.1
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in jesse.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Tsuyoshi Okumura
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # Jesse
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'jesse'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install jesse
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( https://github.com/[my-github-username]/jesse/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create a new Pull Request
@@ -0,0 +1,7 @@
1
+ require "bundler/gem_tasks"
2
+ #require "rspec/core/rake_task"
3
+
4
+ #RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
7
+
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'jesse/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "jesse"
8
+ spec.version = Jesse::VERSION
9
+ spec.authors = ["Tsuyoshi Okumura"]
10
+ spec.email = ["qkrhn081@gmail.com"]
11
+ spec.summary = %q{ORCA-API Client.}
12
+ spec.description = %q{Jesse helps to call ORCA-API and CLAIM requests.}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_development_dependency "rspec"
24
+ spec.add_development_dependency "nokogiri"
25
+ spec.add_development_dependency "rest-client"
26
+ end
@@ -0,0 +1,62 @@
1
+ # encoding: utf-8
2
+ require "jesse/version"
3
+ require "nokogiri"
4
+ require "rest_client"
5
+ require "open-uri"
6
+
7
+ module Jesse
8
+ def self.hello
9
+ puts "hello, I'm jesse."
10
+ end
11
+
12
+ def self.patientget host, user, pass, ptid
13
+
14
+ api_url = 'http://' + user + ":" + pass + "@" + host + "/api01r/patientget?id="
15
+ patient_info = Nokogiri::XML(RestClient.get(api_url + ptid))
16
+ insurance_module_list = Array.new()
17
+ patient_info.xpath('.//data//record//record//array//record').each do |hi|
18
+ if hi.xpath('./string[@name="Insurance_Combination_Number"]').text.strip != ""
19
+ # 主保険
20
+ insurance_module = {
21
+ :combination_number => hi.xpath('./string[@name="Insurance_Combination_Number"]').text.strip,
22
+ :provider_class => hi.xpath('./string[@name="InsuranceProvider_Class"]').text.strip,
23
+ :provider_number => hi.xpath('./string[@name="InsuranceProvider_Number"]').text.strip,
24
+ :provider_name => hi.xpath('./string[@name="InsuranceProvider_WholeName"]').text.strip,
25
+ :person_symbol => hi.xpath('./string[@name="HealthInsuredPerson_Symbol"]').text.strip,
26
+ :person_number => hi.xpath('./string[@name="HealthInsuredPerson_Number"]').text.strip,
27
+ :person_continuation => hi.xpath('./string[@name="HealthInsuredPerson_Continuation"]').text.strip,
28
+ :person_assistance => hi.xpath('./string[@name="HealthInsuredPerson_Assistance"]').text.strip,
29
+ :relation_to_insured_person => hi.xpath('./string[@name="RelationToInsuredPerson"]').text.strip,
30
+ :person_name => hi.xpath('./string[@name="HealthInsuredPerson_WholeName"]').text.strip,
31
+ :start_date => hi.xpath('./string[@name="Certificate_StartDate"]').text.strip,
32
+ :expire_date => hi.xpath('./string[@name="Certificate_ExpiredDate"]').text.strip
33
+ }
34
+
35
+ # 公費
36
+ public_module_list = Array.new()
37
+ hi.xpath('./array/record').each_with_index do |pb, i|
38
+ if pb.xpath('.//string[@name="PublicInsurance_Class"]').text.strip != ""
39
+ public_module = {
40
+ :insurer_class => pb.xpath('./string[@name="PublicInsurance_Class"]').text.strip,
41
+ :insurer_name => pb.xpath('./string[@name="PublicInsurance_Name"]').text.strip,
42
+ :insurer_number => pb.xpath('./string[@name="PublicInsurer_Number"]').text.strip,
43
+ :person_number => pb.xpath('./string[@name="PublicInsuredPerson_Number"]').text.strip,
44
+ :rate_admission => pb.xpath('./string[@name="Rate_Admission"]').text.strip,
45
+ :money_admission => pb.xpath('./string[@name="Money_Admission"]').text.strip,
46
+ :rate_outpatient => pb.xpath('./string[@name="Rate_Outpatient"]').text.strip,
47
+ :money_outpatient => pb.xpath('./string[@name="Money_Outpatient"]').text.strip,
48
+ :issued_date => pb.xpath('./string[@name="Certificate_IssuedDate"]').text.strip,
49
+ :expired_date => pb.xpath('./string[@name="Certificate_ExpiredDate"]').text.strip
50
+ }
51
+ insurance_module["public_insurance_#{(i+1).to_s}"] = public_module
52
+ else
53
+ insurance_module["public_insurance_#{(i+1).to_s}"] = nil
54
+ end
55
+ end
56
+ insurance_module_list << insurance_module
57
+ end
58
+ end
59
+ puts patient_info
60
+ insurance_module_list
61
+ end
62
+ end
@@ -0,0 +1,3 @@
1
+ module Jesse
2
+ VERSION = "0.0.5"
3
+ end
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ describe Jesse do
4
+ it 'should have a version number' do
5
+ expect(Jesse::VERSION).not_to be nil
6
+ end
7
+
8
+ it 'should do something useful' do
9
+ expect(false).to eq(true)
10
+ end
11
+ end
@@ -0,0 +1,2 @@
1
+ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
2
+ require 'jesse'
metadata ADDED
@@ -0,0 +1,128 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jesse
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.5
5
+ platform: ruby
6
+ authors:
7
+ - Tsuyoshi Okumura
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-11-19 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: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '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: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: nokogiri
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rest-client
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: Jesse helps to call ORCA-API and CLAIM requests.
84
+ email:
85
+ - qkrhn081@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".rspec"
92
+ - ".travis.yml"
93
+ - Gemfile
94
+ - LICENSE.txt
95
+ - README.md
96
+ - Rakefile
97
+ - jesse.gemspec
98
+ - lib/jesse.rb
99
+ - lib/jesse/version.rb
100
+ - spec/jesse_spec.rb
101
+ - spec/spec_helper.rb
102
+ homepage: ''
103
+ licenses:
104
+ - MIT
105
+ metadata: {}
106
+ post_install_message:
107
+ rdoc_options: []
108
+ require_paths:
109
+ - lib
110
+ required_ruby_version: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: '0'
115
+ required_rubygems_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ requirements: []
121
+ rubyforge_project:
122
+ rubygems_version: 2.2.2
123
+ signing_key:
124
+ specification_version: 4
125
+ summary: ORCA-API Client.
126
+ test_files:
127
+ - spec/jesse_spec.rb
128
+ - spec/spec_helper.rb