├── .env.sample ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .rspec ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── gemfiles ├── active_support_6.gemfile └── active_support_7.gemfile ├── global_sign.gemspec ├── lib ├── global_sign.rb └── global_sign │ ├── approver_info.rb │ ├── authorized_signer_info.rb │ ├── client.rb │ ├── contract.rb │ ├── csr_decoder.rb │ ├── csr_decoder │ ├── request.rb │ └── response.rb │ ├── dns_verification.rb │ ├── dns_verification │ ├── request.rb │ └── response.rb │ ├── dns_verification_for_issue.rb │ ├── dns_verification_for_issue │ ├── request.rb │ └── response.rb │ ├── dv_approver_list.rb │ ├── dv_approver_list │ ├── request.rb │ └── response.rb │ ├── dv_order.rb │ ├── dv_order │ ├── request.rb │ └── response.rb │ ├── ev_order.rb │ ├── ev_order │ ├── request.rb │ └── response.rb │ ├── jurisdiction_info.rb │ ├── order_getter_by_order_id.rb │ ├── order_getter_by_order_id │ ├── request.rb │ └── response.rb │ ├── order_status.rb │ ├── organization_address.rb │ ├── organization_info.rb │ ├── organization_info │ └── credit_agency.rb │ ├── organization_info_ev.rb │ ├── organization_info_ev │ └── business_category_code.rb │ ├── ov_order.rb │ ├── ov_order │ ├── request.rb │ └── response.rb │ ├── request.rb │ ├── request_xml_builder.rb │ ├── requestor_info.rb │ ├── response.rb │ ├── url_verification.rb │ ├── url_verification │ ├── request.rb │ └── response.rb │ ├── url_verification_for_issue.rb │ ├── url_verification_for_issue │ ├── request.rb │ └── response.rb │ └── version.rb └── spec ├── fixtures ├── csrs │ └── valid.csr ├── global_sign_request.xml └── vcr_cassettes │ ├── csr_decoder │ ├── failure.yml │ └── success.yml │ ├── dns_verification │ ├── new │ │ ├── failure.yml │ │ └── success.yml │ └── renewal │ │ ├── failure.yml │ │ └── success.yml │ ├── dns_verification_for_issue │ ├── failure.yml │ └── success.yml │ ├── dv_approver_list │ ├── failure.yml │ └── success.yml │ ├── dv_order │ ├── new │ │ ├── failure.yml │ │ └── success.yml │ └── renewal │ │ ├── failure.yml │ │ └── success.yml │ ├── ev_order │ ├── new │ │ ├── failure.yml │ │ └── success.yml │ └── renewal │ │ ├── failure.yml │ │ └── success.yml │ ├── order_getter_by_order_id │ ├── failure.yml │ ├── success.yml │ ├── with_certificate_info.yml │ ├── with_certificate_info_order_status_initial.yml │ └── with_fulfillment.yml │ ├── ov_order │ ├── new │ │ ├── failure.yml │ │ └── success.yml │ └── renewal │ │ ├── failure.yml │ │ └── success.yml │ ├── url_verification │ ├── new │ │ ├── failure.yml │ │ └── success.yml │ └── renewal │ │ ├── failure.yml │ │ └── success.yml │ └── url_verification_for_issue │ ├── failure.yml │ └── success.yml ├── global_sign ├── client_spec.rb ├── csr_decoder │ └── response_spec.rb ├── dns_verification │ └── response_spec.rb ├── dns_verification_for_issue │ └── response_spec.rb ├── dv_approver_list │ └── response_spec.rb ├── dv_order │ └── response_spec.rb ├── ev_order │ └── response_spec.rb ├── order_getter_by_order_id │ ├── request_spec.rb │ └── response_spec.rb ├── ov_order │ └── response_spec.rb ├── request_spec.rb ├── request_xml_builder_spec.rb ├── url_verification │ └── response_spec.rb └── url_verification_for_issue │ └── response_spec.rb ├── global_sign_spec.rb ├── spec_helper.rb └── support └── csr_helper.rb /.env.sample: -------------------------------------------------------------------------------- 1 | USER_NAME='PAR12345_taro' 2 | PASSWORD='password' 3 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/bin/setup -------------------------------------------------------------------------------- /gemfiles/active_support_6.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/gemfiles/active_support_6.gemfile -------------------------------------------------------------------------------- /gemfiles/active_support_7.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/gemfiles/active_support_7.gemfile -------------------------------------------------------------------------------- /global_sign.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/global_sign.gemspec -------------------------------------------------------------------------------- /lib/global_sign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign.rb -------------------------------------------------------------------------------- /lib/global_sign/approver_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/approver_info.rb -------------------------------------------------------------------------------- /lib/global_sign/authorized_signer_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/authorized_signer_info.rb -------------------------------------------------------------------------------- /lib/global_sign/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/client.rb -------------------------------------------------------------------------------- /lib/global_sign/contract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/contract.rb -------------------------------------------------------------------------------- /lib/global_sign/csr_decoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/csr_decoder.rb -------------------------------------------------------------------------------- /lib/global_sign/csr_decoder/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/csr_decoder/request.rb -------------------------------------------------------------------------------- /lib/global_sign/csr_decoder/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/csr_decoder/response.rb -------------------------------------------------------------------------------- /lib/global_sign/dns_verification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/dns_verification.rb -------------------------------------------------------------------------------- /lib/global_sign/dns_verification/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/dns_verification/request.rb -------------------------------------------------------------------------------- /lib/global_sign/dns_verification/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/dns_verification/response.rb -------------------------------------------------------------------------------- /lib/global_sign/dns_verification_for_issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/dns_verification_for_issue.rb -------------------------------------------------------------------------------- /lib/global_sign/dns_verification_for_issue/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/dns_verification_for_issue/request.rb -------------------------------------------------------------------------------- /lib/global_sign/dns_verification_for_issue/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/dns_verification_for_issue/response.rb -------------------------------------------------------------------------------- /lib/global_sign/dv_approver_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/dv_approver_list.rb -------------------------------------------------------------------------------- /lib/global_sign/dv_approver_list/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/dv_approver_list/request.rb -------------------------------------------------------------------------------- /lib/global_sign/dv_approver_list/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/dv_approver_list/response.rb -------------------------------------------------------------------------------- /lib/global_sign/dv_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/dv_order.rb -------------------------------------------------------------------------------- /lib/global_sign/dv_order/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/dv_order/request.rb -------------------------------------------------------------------------------- /lib/global_sign/dv_order/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/dv_order/response.rb -------------------------------------------------------------------------------- /lib/global_sign/ev_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/ev_order.rb -------------------------------------------------------------------------------- /lib/global_sign/ev_order/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/ev_order/request.rb -------------------------------------------------------------------------------- /lib/global_sign/ev_order/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/ev_order/response.rb -------------------------------------------------------------------------------- /lib/global_sign/jurisdiction_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/jurisdiction_info.rb -------------------------------------------------------------------------------- /lib/global_sign/order_getter_by_order_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/order_getter_by_order_id.rb -------------------------------------------------------------------------------- /lib/global_sign/order_getter_by_order_id/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/order_getter_by_order_id/request.rb -------------------------------------------------------------------------------- /lib/global_sign/order_getter_by_order_id/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/order_getter_by_order_id/response.rb -------------------------------------------------------------------------------- /lib/global_sign/order_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/order_status.rb -------------------------------------------------------------------------------- /lib/global_sign/organization_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/organization_address.rb -------------------------------------------------------------------------------- /lib/global_sign/organization_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/organization_info.rb -------------------------------------------------------------------------------- /lib/global_sign/organization_info/credit_agency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/organization_info/credit_agency.rb -------------------------------------------------------------------------------- /lib/global_sign/organization_info_ev.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/organization_info_ev.rb -------------------------------------------------------------------------------- /lib/global_sign/organization_info_ev/business_category_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/organization_info_ev/business_category_code.rb -------------------------------------------------------------------------------- /lib/global_sign/ov_order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/ov_order.rb -------------------------------------------------------------------------------- /lib/global_sign/ov_order/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/ov_order/request.rb -------------------------------------------------------------------------------- /lib/global_sign/ov_order/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/ov_order/response.rb -------------------------------------------------------------------------------- /lib/global_sign/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/request.rb -------------------------------------------------------------------------------- /lib/global_sign/request_xml_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/request_xml_builder.rb -------------------------------------------------------------------------------- /lib/global_sign/requestor_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/requestor_info.rb -------------------------------------------------------------------------------- /lib/global_sign/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/response.rb -------------------------------------------------------------------------------- /lib/global_sign/url_verification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/url_verification.rb -------------------------------------------------------------------------------- /lib/global_sign/url_verification/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/url_verification/request.rb -------------------------------------------------------------------------------- /lib/global_sign/url_verification/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/url_verification/response.rb -------------------------------------------------------------------------------- /lib/global_sign/url_verification_for_issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/url_verification_for_issue.rb -------------------------------------------------------------------------------- /lib/global_sign/url_verification_for_issue/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/url_verification_for_issue/request.rb -------------------------------------------------------------------------------- /lib/global_sign/url_verification_for_issue/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/lib/global_sign/url_verification_for_issue/response.rb -------------------------------------------------------------------------------- /lib/global_sign/version.rb: -------------------------------------------------------------------------------- 1 | module GlobalSign 2 | VERSION = "2.3.0" 3 | end 4 | -------------------------------------------------------------------------------- /spec/fixtures/csrs/valid.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/csrs/valid.csr -------------------------------------------------------------------------------- /spec/fixtures/global_sign_request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/global_sign_request.xml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/csr_decoder/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/csr_decoder/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/csr_decoder/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/csr_decoder/success.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/dns_verification/new/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/dns_verification/new/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/dns_verification/new/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/dns_verification/new/success.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/dns_verification/renewal/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/dns_verification/renewal/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/dns_verification/renewal/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/dns_verification/renewal/success.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/dns_verification_for_issue/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/dns_verification_for_issue/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/dns_verification_for_issue/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/dns_verification_for_issue/success.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/dv_approver_list/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/dv_approver_list/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/dv_approver_list/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/dv_approver_list/success.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/dv_order/new/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/dv_order/new/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/dv_order/new/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/dv_order/new/success.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/dv_order/renewal/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/dv_order/renewal/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/dv_order/renewal/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/dv_order/renewal/success.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/ev_order/new/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/ev_order/new/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/ev_order/new/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/ev_order/new/success.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/ev_order/renewal/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/ev_order/renewal/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/ev_order/renewal/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/ev_order/renewal/success.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/order_getter_by_order_id/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/order_getter_by_order_id/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/order_getter_by_order_id/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/order_getter_by_order_id/success.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/order_getter_by_order_id/with_certificate_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/order_getter_by_order_id/with_certificate_info.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/order_getter_by_order_id/with_certificate_info_order_status_initial.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/order_getter_by_order_id/with_certificate_info_order_status_initial.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/order_getter_by_order_id/with_fulfillment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/order_getter_by_order_id/with_fulfillment.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/ov_order/new/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/ov_order/new/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/ov_order/new/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/ov_order/new/success.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/ov_order/renewal/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/ov_order/renewal/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/ov_order/renewal/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/ov_order/renewal/success.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/url_verification/new/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/url_verification/new/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/url_verification/new/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/url_verification/new/success.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/url_verification/renewal/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/url_verification/renewal/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/url_verification/renewal/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/url_verification/renewal/success.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/url_verification_for_issue/failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/url_verification_for_issue/failure.yml -------------------------------------------------------------------------------- /spec/fixtures/vcr_cassettes/url_verification_for_issue/success.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/fixtures/vcr_cassettes/url_verification_for_issue/success.yml -------------------------------------------------------------------------------- /spec/global_sign/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/global_sign/client_spec.rb -------------------------------------------------------------------------------- /spec/global_sign/csr_decoder/response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/global_sign/csr_decoder/response_spec.rb -------------------------------------------------------------------------------- /spec/global_sign/dns_verification/response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/global_sign/dns_verification/response_spec.rb -------------------------------------------------------------------------------- /spec/global_sign/dns_verification_for_issue/response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/global_sign/dns_verification_for_issue/response_spec.rb -------------------------------------------------------------------------------- /spec/global_sign/dv_approver_list/response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/global_sign/dv_approver_list/response_spec.rb -------------------------------------------------------------------------------- /spec/global_sign/dv_order/response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/global_sign/dv_order/response_spec.rb -------------------------------------------------------------------------------- /spec/global_sign/ev_order/response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/global_sign/ev_order/response_spec.rb -------------------------------------------------------------------------------- /spec/global_sign/order_getter_by_order_id/request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/global_sign/order_getter_by_order_id/request_spec.rb -------------------------------------------------------------------------------- /spec/global_sign/order_getter_by_order_id/response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/global_sign/order_getter_by_order_id/response_spec.rb -------------------------------------------------------------------------------- /spec/global_sign/ov_order/response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/global_sign/ov_order/response_spec.rb -------------------------------------------------------------------------------- /spec/global_sign/request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/global_sign/request_spec.rb -------------------------------------------------------------------------------- /spec/global_sign/request_xml_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/global_sign/request_xml_builder_spec.rb -------------------------------------------------------------------------------- /spec/global_sign/url_verification/response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/global_sign/url_verification/response_spec.rb -------------------------------------------------------------------------------- /spec/global_sign/url_verification_for_issue/response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/global_sign/url_verification_for_issue/response_spec.rb -------------------------------------------------------------------------------- /spec/global_sign_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/global_sign_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/csr_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pepabo/global_sign/HEAD/spec/support/csr_helper.rb --------------------------------------------------------------------------------