quicktravel_client 4.1.0 → 4.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +6 -0
- data/.github/workflows/release.yml +59 -0
- data/.github/workflows/ruby.yml +19 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +20 -1
- data/README.md +23 -4
- data/gemfiles/{rails6.gemfile → rails60.gemfile} +0 -0
- data/gemfiles/rails61.gemfile +8 -0
- data/lib/quick_travel/adapter.rb +3 -0
- data/lib/quick_travel/checkout.rb +3 -2
- data/lib/quick_travel/party.rb +8 -3
- data/lib/quick_travel/version.rb +1 -1
- data/quicktravel_client.gemspec +3 -2
- data/spec/support/cassettes/accommodation_reserve.yml +5 -5
- data/spec/support/cassettes/basic_product_scheduled_trips.yml +2 -2
- data/spec/support/cassettes/basic_product_scheduled_trips_multi_sector.yml +2 -2
- data/spec/support/cassettes/basic_product_scheduled_trips_unbookable.yml +2 -2
- data/spec/support/cassettes/booking_update.yml +3 -3
- data/spec/support/cassettes/booking_with_nested_attributes.yml +4 -4
- data/spec/support/cassettes/create_reservation_with_booking.yml +2 -2
- data/spec/support/cassettes/price_quote.yml +4 -4
- metadata +12 -10
- data/.travis.yml +0 -16
- data/gemfiles/rails5.gemfile +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e129c681ca2ddcb9dd7e16bec7c20abf68d521e97772a014084eafff9012d59a
|
4
|
+
data.tar.gz: 4b2616b1833da92d728e068855ef45d079dee130917d069dc0392fca3c4cf29a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7583c89610fb8f7b5807446638dd0eac84773fc7007be819f6ef410121eca3a00bf6dba6db78373ea067804ae73fe39afa3951c15a9d9456ff7865167735367c
|
7
|
+
data.tar.gz: 5ca4f5155bf9130c355c9a11620af95914e84276d382eff6f80b97a28fa98000ec055afc18c0f35ebbee6d9bec5f0a9a8ea9d0148c8a708b15b7e59644f60a13
|
@@ -0,0 +1,59 @@
|
|
1
|
+
name: Release
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
tags:
|
6
|
+
- "v*"
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
build:
|
10
|
+
name: Build
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
steps:
|
13
|
+
- name: Checkout
|
14
|
+
uses: actions/checkout@v2
|
15
|
+
- uses: ruby/setup-ruby@v1
|
16
|
+
with:
|
17
|
+
bundler-cache: true
|
18
|
+
- run: bundle exec rake
|
19
|
+
|
20
|
+
release:
|
21
|
+
needs: build
|
22
|
+
name: Release
|
23
|
+
runs-on: ubuntu-latest
|
24
|
+
steps:
|
25
|
+
- name: Checkout
|
26
|
+
uses: actions/checkout@v2
|
27
|
+
|
28
|
+
- name: Generate Changelog
|
29
|
+
run: |
|
30
|
+
# Get version from github ref (remove 'refs/tags/' and prefix 'v')
|
31
|
+
version="${GITHUB_REF#refs/tags/v}"
|
32
|
+
npx changelog-parser CHANGELOG.md | jq -cr ".versions | .[] | select(.version == \"$version\") | .body" > ${{ github.workflow }}-CHANGELOG.txt
|
33
|
+
|
34
|
+
- name: Release
|
35
|
+
uses: softprops/action-gh-release@v1
|
36
|
+
with:
|
37
|
+
body_path: ${{ github.workflow }}-CHANGELOG.txt
|
38
|
+
env:
|
39
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
40
|
+
|
41
|
+
publish:
|
42
|
+
needs: [build, release]
|
43
|
+
name: Publish
|
44
|
+
runs-on: ubuntu-latest
|
45
|
+
|
46
|
+
steps:
|
47
|
+
- uses: actions/checkout@v2
|
48
|
+
- uses: ruby/setup-ruby@v1
|
49
|
+
|
50
|
+
- name: Publish to RubyGems
|
51
|
+
run: |
|
52
|
+
mkdir -p $HOME/.gem
|
53
|
+
touch $HOME/.gem/credentials
|
54
|
+
chmod 0600 $HOME/.gem/credentials
|
55
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
56
|
+
gem build *.gemspec
|
57
|
+
gem push *.gem
|
58
|
+
env:
|
59
|
+
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|
@@ -0,0 +1,19 @@
|
|
1
|
+
name: Build and Test
|
2
|
+
on: [push, pull_request]
|
3
|
+
jobs:
|
4
|
+
test:
|
5
|
+
strategy:
|
6
|
+
fail-fast: false
|
7
|
+
matrix:
|
8
|
+
gemfile: [rails60, rails61]
|
9
|
+
ruby: ["2.6", "2.7", "3.0"]
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
env:
|
12
|
+
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
|
13
|
+
steps:
|
14
|
+
- uses: actions/checkout@v2
|
15
|
+
- uses: ruby/setup-ruby@v1
|
16
|
+
with:
|
17
|
+
ruby-version: ${{ matrix.ruby }}
|
18
|
+
bundler-cache: true
|
19
|
+
- run: bundle exec rake
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
3.0.0
|
data/CHANGELOG.md
CHANGED
@@ -3,7 +3,26 @@ All notable changes to this project will be documented in this file.
|
|
3
3
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
4
4
|
This changelog adheres to [Keep a CHANGELOG](http://keepachangelog.com/).
|
5
5
|
|
6
|
-
##
|
6
|
+
## 4.4.0
|
7
|
+
- [TT-8615] Update to build with github actions / ruby 3.0 / rails 6.1
|
8
|
+
|
9
|
+
## [4.3.2]
|
10
|
+
### Fixed
|
11
|
+
- [TT-8511] Revert party lookup via the API endpoint
|
12
|
+
|
13
|
+
## [4.3.1]
|
14
|
+
### Fixed
|
15
|
+
- [TT-8471] Fix missing QuickTravel:VERSION const error
|
16
|
+
|
17
|
+
## [4.3.0]
|
18
|
+
### Changed
|
19
|
+
- [TT-8142] Add suitable user-agent header
|
20
|
+
- [TT-8379] Switch to using api/parties endpoint
|
21
|
+
|
22
|
+
## [4.2.0]
|
23
|
+
### Changed
|
24
|
+
- [TT-7969] Update cassettes to work with HttpParty >= 0.18.1
|
25
|
+
- [TT-7912] Update api status endpoint to the new response format
|
7
26
|
|
8
27
|
## [4.1.0]
|
9
28
|
### Added
|
data/README.md
CHANGED
@@ -1,10 +1,8 @@
|
|
1
|
-
QuickTravel
|
2
|
-
===========
|
1
|
+
# QuickTravel
|
3
2
|
|
4
3
|
[![Gem Version](https://badge.fury.io/rb/quicktravel_client.svg)](http://badge.fury.io/rb/quicktravel_client)
|
5
|
-
[![Build Status](https://
|
4
|
+
[![Build Status](https://github.com/sealink/quicktravel_client/workflows/Build%20and%20Test/badge.svg?branch=master)](https://github.com/sealink/quicktravel_client/actions)
|
6
5
|
[![Coverage Status](https://coveralls.io/repos/sealink/quicktravel_client/badge.svg)](https://coveralls.io/r/sealink/quicktravel_client)
|
7
|
-
[![Dependency Status](https://gemnasium.com/sealink/quicktravel_client.svg)](https://gemnasium.com/sealink/quicktravel_client)
|
8
6
|
[![Code Climate](https://codeclimate.com/github/sealink/quicktravel_client/badges/gpa.svg)](https://codeclimate.com/github/sealink/quicktravel_client)
|
9
7
|
|
10
8
|
# DESCRIPTION
|
@@ -14,17 +12,38 @@ Gives models that are integrated with the QuickTravel API
|
|
14
12
|
# INSTALLATION
|
15
13
|
|
16
14
|
Add to your Gemfile:
|
15
|
+
|
16
|
+
```
|
17
17
|
gem 'quicktravel_client'
|
18
|
+
```
|
18
19
|
|
19
20
|
# REGENERATE CASSETTES
|
20
21
|
|
21
22
|
In QuickTravel:
|
23
|
+
```
|
22
24
|
mysql quicktravel_test < ../quicktravel_test/bootstrap.sql
|
23
25
|
TIMECOP=1 WEBMOCK=0 QUICKTRAVEL_CONFIG_DIR=spec/support/config RAILS_ENV=test bundle exec rails s -p8080
|
26
|
+
```
|
24
27
|
|
25
28
|
In Payment Service: (if needing to generate checkout cassettes):
|
29
|
+
```
|
26
30
|
bundle exec puma -Ilib -p7000
|
31
|
+
```
|
27
32
|
|
28
33
|
In QuickTravel Client:
|
34
|
+
```
|
29
35
|
rm spec/support/cassettes/ -rf
|
30
36
|
QT_KEYS=a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2,1b0a9f8e7d6c5b4a3f2e1d0c9b8a7f6e5d4c3b2a1f0e9d8c7b6a5f4e3d2c1b0a bundle exec rspec
|
37
|
+
```
|
38
|
+
|
39
|
+
# RELEASE
|
40
|
+
|
41
|
+
To publish a new version of this gem the following steps must be taken.
|
42
|
+
|
43
|
+
* Update the version in the following files
|
44
|
+
```
|
45
|
+
CHANGELOG.md
|
46
|
+
lib/quick_travel/version.rb
|
47
|
+
````
|
48
|
+
* Create a tag using the format v0.1.0
|
49
|
+
* Follow build progress in GitHub actions
|
File without changes
|
data/lib/quick_travel/adapter.rb
CHANGED
@@ -9,6 +9,7 @@ require 'facets/hash/delete_values'
|
|
9
9
|
require 'quick_travel/config'
|
10
10
|
require 'quick_travel/adapter_error'
|
11
11
|
require 'quick_travel/init_from_hash'
|
12
|
+
require 'quick_travel/version'
|
12
13
|
|
13
14
|
module QuickTravel
|
14
15
|
class Adapter
|
@@ -214,6 +215,8 @@ module QuickTravel
|
|
214
215
|
http_params[:headers] ||= {}
|
215
216
|
http_params[:headers]['Content-length'] = '0' if http_params[:body].blank?
|
216
217
|
http_params[:headers]['x-api-key'] = QuickTravel.config.access_key
|
218
|
+
http_params[:headers]['user-agent'] = 'quicktravel_client/' + QuickTravel::VERSION;
|
219
|
+
|
217
220
|
expect = http_params.delete(:expect)
|
218
221
|
|
219
222
|
# Use :body instead of :query for put/post.
|
@@ -29,10 +29,11 @@ module QuickTravel
|
|
29
29
|
# When complete:
|
30
30
|
# progress: 'completed'
|
31
31
|
#
|
32
|
-
# When failed, status :
|
32
|
+
# When failed, status :ok
|
33
|
+
# successful: false
|
33
34
|
# error: 'Reason for failure'
|
34
35
|
def self.status(id)
|
35
|
-
build_checkout_for { get_and_validate("/api/checkouts/#{id}.json") }
|
36
|
+
build_checkout_for { get_and_validate("/api/checkouts/#{id}.json?v=1") }
|
36
37
|
end
|
37
38
|
|
38
39
|
def self.update(id, data)
|
data/lib/quick_travel/party.rb
CHANGED
@@ -7,9 +7,10 @@ module QuickTravel
|
|
7
7
|
|
8
8
|
def initialize(hash = {})
|
9
9
|
super
|
10
|
-
|
11
|
-
|
12
|
-
|
10
|
+
# TODO Fix the QT endpoint to actual return the type, first step
|
11
|
+
# is to revert it so we can fix the pacts, than we can update the
|
12
|
+
# expectations to include a return value
|
13
|
+
@type = 'Person'
|
13
14
|
end
|
14
15
|
|
15
16
|
self.api_base = '/parties'
|
@@ -18,6 +19,10 @@ module QuickTravel
|
|
18
19
|
get_and_validate('/parties/find_by_login.json', options)
|
19
20
|
end
|
20
21
|
|
22
|
+
def self.create(options = {})
|
23
|
+
post_and_validate("/api/parties.json", options)
|
24
|
+
end
|
25
|
+
|
21
26
|
# Asks QuickTravel to check the credentials
|
22
27
|
#
|
23
28
|
# @returns: Party: Valid Credentials
|
data/lib/quick_travel/version.rb
CHANGED
data/quicktravel_client.gemspec
CHANGED
@@ -15,8 +15,9 @@ Gem::Specification.new do |spec|
|
|
15
15
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
16
16
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
17
17
|
spec.require_paths = ['lib']
|
18
|
+
spec.required_ruby_version = '>= 2.6'
|
18
19
|
|
19
|
-
spec.add_dependency 'httparty'
|
20
|
+
spec.add_dependency 'httparty', '>= 0.18.1'
|
20
21
|
spec.add_dependency 'activesupport', '>= 5.0.0'
|
21
22
|
spec.add_dependency 'facets'
|
22
23
|
spec.add_dependency 'money', '>= 6.0'
|
@@ -34,5 +35,5 @@ Gem::Specification.new do |spec|
|
|
34
35
|
spec.add_development_dependency 'vcr'
|
35
36
|
spec.add_development_dependency 'webmock'
|
36
37
|
spec.add_development_dependency 'rubocop'
|
37
|
-
spec.add_development_dependency '
|
38
|
+
spec.add_development_dependency 'pry'
|
38
39
|
end
|
@@ -5,7 +5,7 @@ http_interactions:
|
|
5
5
|
uri: http://test.qt.sealink.com.au:8080/reservation_for/accommodations/create_or_update.json
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: reservations
|
8
|
+
string: reservations%5Bresource_id%5D=6&reservations%5Bbed_configuration_id%5D=1&reservations%5Bfirst_travel_date%5D=01%2F03%2F2016&reservations%5Blast_travel_date%5D=02%2F03%2F2016&booking_id=4
|
9
9
|
headers:
|
10
10
|
Content-Length:
|
11
11
|
- '0'
|
@@ -54,7 +54,7 @@ http_interactions:
|
|
54
54
|
body:
|
55
55
|
encoding: UTF-8
|
56
56
|
string: ''
|
57
|
-
http_version:
|
57
|
+
http_version:
|
58
58
|
recorded_at: Wed, 21 Mar 2018 04:40:20 GMT
|
59
59
|
- request:
|
60
60
|
method: get
|
@@ -121,7 +121,7 @@ http_interactions:
|
|
121
121
|
Discount Hilton","description":"","display_name":"Test Discount Hilton"}],"package":false,"sub_reservation_depth":0,"extra_pick":null,"child_resource":null,"pending_confirmation":false,"confirmation_request_fields":[],"report_reservation_changes":false,"vendor_pnr":null,"pick_up_information":null,"drop_off_information":null,"vendor_staff":null,"notes_for_vendor":null,"passenger_ids":[],"passenger_splits":[],"vehicle_ids":[],"vehicle_splits":[],"consumer_grosses":{}}],"adjustments_attributes":[],"payments_attributes":[],"payment_types_attributes":[{"id":4,"name":"visa","description":"visa","transaction_fee":"0.0","active":true,"position":3,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":"Visa","payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":5,"name":"master","description":"master","transaction_fee":"0.0","active":true,"position":4,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":7,"name":"PayPal","description":"Payments
|
122
122
|
made via PayPal account","transaction_fee":"0.0","active":true,"position":6,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"paypal","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":10,"name":"Opal
|
123
123
|
Pay","description":"Opal Payments","transaction_fee":"0.0","active":true,"position":9,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"opal_pay","gateway":null,"on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":false,"creditlink":false,"surchargeable":false}],"issued_tickets_attributes":[]}'
|
124
|
-
http_version:
|
124
|
+
http_version:
|
125
125
|
recorded_at: Wed, 21 Mar 2018 04:40:21 GMT
|
126
126
|
- request:
|
127
127
|
method: get
|
@@ -188,7 +188,7 @@ http_interactions:
|
|
188
188
|
Discount Hilton","description":"","display_name":"Test Discount Hilton"}],"package":false,"sub_reservation_depth":0,"extra_pick":null,"child_resource":null,"pending_confirmation":false,"confirmation_request_fields":[],"report_reservation_changes":false,"vendor_pnr":null,"pick_up_information":null,"drop_off_information":null,"vendor_staff":null,"notes_for_vendor":null,"passenger_ids":[],"passenger_splits":[],"vehicle_ids":[],"vehicle_splits":[],"consumer_grosses":{}}],"adjustments_attributes":[],"payments_attributes":[],"payment_types_attributes":[{"id":4,"name":"visa","description":"visa","transaction_fee":"0.0","active":true,"position":3,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":"Visa","payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":5,"name":"master","description":"master","transaction_fee":"0.0","active":true,"position":4,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":7,"name":"PayPal","description":"Payments
|
189
189
|
made via PayPal account","transaction_fee":"0.0","active":true,"position":6,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"paypal","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":10,"name":"Opal
|
190
190
|
Pay","description":"Opal Payments","transaction_fee":"0.0","active":true,"position":9,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"opal_pay","gateway":null,"on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":false,"creditlink":false,"surchargeable":false}],"issued_tickets_attributes":[]}'
|
191
|
-
http_version:
|
191
|
+
http_version:
|
192
192
|
recorded_at: Wed, 21 Mar 2018 04:40:21 GMT
|
193
193
|
- request:
|
194
194
|
method: get
|
@@ -249,6 +249,6 @@ http_interactions:
|
|
249
249
|
Hotel - Executive Room","client_type_ids":[],"category":null,"location_ids":[5],"current_description":"\u003cp\u003eA
|
250
250
|
basic studio room\u003c/p\u003e","graphics":[],"graphic_names":[],"property_name":"Hilton
|
251
251
|
Hotel","ticket_template":null,"expiry_days":null}]'
|
252
|
-
http_version:
|
252
|
+
http_version:
|
253
253
|
recorded_at: Wed, 21 Mar 2018 04:40:22 GMT
|
254
254
|
recorded_with: VCR 4.0.0
|
@@ -5,7 +5,7 @@ http_interactions:
|
|
5
5
|
uri: http://test.qt.sealink.com.au:8080/reservation_for/scheduled_trips/find_services_for.json
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: product_type_id=1&route_id=1&forward
|
8
|
+
string: product_type_id=1&route_id=1&forward%5Bfirst_travel_date%5D=2016-03-01&forward%5Bpassenger_types%5D%5B1%5D=2
|
9
9
|
headers:
|
10
10
|
Content-Length:
|
11
11
|
- '0'
|
@@ -64,6 +64,6 @@ http_interactions:
|
|
64
64
|
class=\"money positive\"\u003e$40.00\u003c/span\u003e\u0026nbsp;\u003c/span\u003e","price_breakdown_passengers_in_cents":4000,"price_breakdown_vehicles_in_cents":0,"trip_id":5,"stop_departure_time":"2000-01-01T18:00:00.000Z","stop_arrival_time":"2000-01-01T18:45:00.000Z","from_route_stop_attributes":null,"to_route_stop_attributes":null,"departure_time":"2000-01-01T18:00:00.000Z","arrival_time":"2000-01-01T18:45:00.000Z"},{"product_id":"6","product_id_field":"trip_id","resource_id":1,"resource_class_name_underscore":"ship","product_name_underscore":"ferry","tariff_level_id":1,"service_ids":[14],"first_travel_date":"01-03-2016","last_travel_date":"01-03-2016","time_class":"","exception_type":null,"bookable":true,"reason_unbookable":null,"service_notes":null,"booking_notes":null,"inventory_type_code":"A","price_in_cents":4000,"pre_adjusted_price_in_cents":4000,"total_price_adjustment_in_cents":0,"adjustments":[],"selection_name":"09:00pm
|
65
65
|
- KI Ferry","price_breakdown":"\u003cspan\u003e\u003cstrong\u003ePassengers:\u003c/strong\u003e\u0026nbsp;\u003cspan
|
66
66
|
class=\"money positive\"\u003e$40.00\u003c/span\u003e\u0026nbsp;\u003c/span\u003e","price_breakdown_passengers_in_cents":4000,"price_breakdown_vehicles_in_cents":0,"trip_id":6,"stop_departure_time":"2000-01-01T21:00:00.000Z","stop_arrival_time":"2000-01-01T21:45:00.000Z","from_route_stop_attributes":null,"to_route_stop_attributes":null,"departure_time":"2000-01-01T21:00:00.000Z","arrival_time":"2000-01-01T21:45:00.000Z"}]'
|
67
|
-
http_version:
|
67
|
+
http_version:
|
68
68
|
recorded_at: Wed, 21 Mar 2018 04:40:37 GMT
|
69
69
|
recorded_with: VCR 4.0.0
|
@@ -5,7 +5,7 @@ http_interactions:
|
|
5
5
|
uri: http://test.qt.sealink.com.au:8080/reservation_for/scheduled_trips/find_services_for.json
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: product_type_id=6&route_id=3&forward
|
8
|
+
string: product_type_id=6&route_id=3&forward%5Bfirst_travel_date%5D=2016-03-01&forward%5Bfrom_route_stop_id%5D=5&forward%5Bto_route_stop_id%5D=14&forward%5Bpassenger_types%5D%5B1%5D=2
|
9
9
|
headers:
|
10
10
|
Content-Length:
|
11
11
|
- '0'
|
@@ -64,6 +64,6 @@ http_interactions:
|
|
64
64
|
class=\"money positive\"\u003e$30.00\u003c/span\u003e\u0026nbsp;\u003c/span\u003e","price_breakdown_passengers_in_cents":3000,"price_breakdown_vehicles_in_cents":0,"trip_id":13,"stop_departure_time":"2000-01-01T15:45:00.000Z","stop_arrival_time":"2000-01-01T17:30:00.000Z","from_route_stop_attributes":{"id":5,"inventory_controlled":true,"route_id":3,"position":1,"created_at":null,"updated_at":null,"stop_id":3,"name":"Adelaide
|
65
65
|
Central Bus Station","code":"ACBS"},"to_route_stop_attributes":{"id":14,"inventory_controlled":true,"route_id":3,"position":10,"created_at":null,"updated_at":null,"stop_id":12,"name":"Cape
|
66
66
|
Jervis Ferry Terminal","code":null},"departure_time":"2000-01-01T15:00:00.000Z","arrival_time":"2000-01-01T17:30:00.000Z"}]'
|
67
|
-
http_version:
|
67
|
+
http_version:
|
68
68
|
recorded_at: Wed, 21 Mar 2018 04:40:38 GMT
|
69
69
|
recorded_with: VCR 4.0.0
|
@@ -5,7 +5,7 @@ http_interactions:
|
|
5
5
|
uri: http://test.qt.sealink.com.au:8080/reservation_for/scheduled_trips/find_services_for.json
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: product_type_id=1&route_id=1&forward
|
8
|
+
string: product_type_id=1&route_id=1&forward%5Bfirst_travel_date%5D=2016-03-03&forward%5Bpassenger_types%5D%5B1%5D=2
|
9
9
|
headers:
|
10
10
|
Content-Length:
|
11
11
|
- '0'
|
@@ -56,6 +56,6 @@ http_interactions:
|
|
56
56
|
body:
|
57
57
|
encoding: UTF-8
|
58
58
|
string: "[]"
|
59
|
-
http_version:
|
59
|
+
http_version:
|
60
60
|
recorded_at: Wed, 21 Mar 2018 04:40:37 GMT
|
61
61
|
recorded_with: VCR 4.0.0
|
@@ -5,7 +5,7 @@ http_interactions:
|
|
5
5
|
uri: http://test.qt.sealink.com.au:8080/api/bookings/3.json
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: booking
|
8
|
+
string: booking%5Bcustomer_contact_name%5D=John
|
9
9
|
headers:
|
10
10
|
Content-Length:
|
11
11
|
- '0'
|
@@ -58,7 +58,7 @@ http_interactions:
|
|
58
58
|
string: '{"id":3,"state":"new","reference":"222226","public_comments":null,"internal_comments":null,"customer_contact_name":"John","customer_contact_phone":null,"customer_contact_mobile":null,"customer_contact_email":null,"currency_iso_code":"AUD","country_id":14,"drop_off_option_id":null,"drop_off_location_id":null,"post_code":null,"referral_code_id":1,"external_identifier":null,"created_at":"2016-01-01T13:02:06.000+10:30","updated_at":"2016-01-01T13:02:06.000+10:30","promo_code":null,"promo_code_id":null,"insurance_offered":false,"total_adjustments_in_cents":0,"pre_adjusted_gross_in_cents":0,"nett_in_cents":0,"gross_in_cents":0,"commission_in_cents":0,"balance_in_cents":0,"paid_in_cents":0,"surcharge_in_cents":0,"deposit_in_cents":0,"web_site_name":"SeaLink","deposit_relevant":false,"deposit_due_on":null,"balance_due_on":null,"due":true,"first_travel_date":{"_type":"Date","_value":"2016-01-01"},"last_travel_date":null,"complete":true,"reason_not_complete":"","first_reason_not_complete":"","unprintable_luggage_tags":false,"discardable_in":60,"inactivatable_in":10,"notices":{},"client":null,"passenger_ids":[],"vehicle_ids":[],"reservation_ids":[],"adjustment_ids":[],"todo_items":[],"confirmation_requests":[],"passengers_attributes":[],"vehicles_attributes":[],"reservations_attributes":[],"adjustments_attributes":[],"payments_attributes":[],"payment_types_attributes":[{"id":4,"name":"visa","description":"visa","transaction_fee":"0.0","active":true,"position":3,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":"Visa","payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":5,"name":"master","description":"master","transaction_fee":"0.0","active":true,"position":4,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":7,"name":"PayPal","description":"Payments
|
59
59
|
made via PayPal account","transaction_fee":"0.0","active":true,"position":6,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"paypal","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":10,"name":"Opal
|
60
60
|
Pay","description":"Opal Payments","transaction_fee":"0.0","active":true,"position":9,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"opal_pay","gateway":null,"on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":false,"creditlink":false,"surchargeable":false}],"issued_tickets_attributes":[]}'
|
61
|
-
http_version:
|
61
|
+
http_version:
|
62
62
|
recorded_at: Wed, 21 Mar 2018 04:40:13 GMT
|
63
63
|
- request:
|
64
64
|
method: get
|
@@ -118,6 +118,6 @@ http_interactions:
|
|
118
118
|
string: '{"id":3,"state":"new","reference":"222226","public_comments":null,"internal_comments":null,"customer_contact_name":"John","customer_contact_phone":null,"customer_contact_mobile":null,"customer_contact_email":null,"currency_iso_code":"AUD","country_id":14,"drop_off_option_id":null,"drop_off_location_id":null,"post_code":null,"referral_code_id":1,"external_identifier":null,"created_at":"2016-01-01T13:02:06.000+10:30","updated_at":"2016-01-01T13:02:06.000+10:30","promo_code":null,"promo_code_id":null,"insurance_offered":false,"total_adjustments_in_cents":0,"pre_adjusted_gross_in_cents":0,"nett_in_cents":0,"gross_in_cents":0,"commission_in_cents":0,"balance_in_cents":0,"paid_in_cents":0,"surcharge_in_cents":0,"deposit_in_cents":0,"web_site_name":"SeaLink","deposit_relevant":false,"deposit_due_on":null,"balance_due_on":null,"due":true,"first_travel_date":{"_type":"Date","_value":"2016-01-01"},"last_travel_date":null,"complete":true,"reason_not_complete":"","first_reason_not_complete":"","unprintable_luggage_tags":false,"discardable_in":60,"inactivatable_in":10,"notices":{},"client":null,"passenger_ids":[],"vehicle_ids":[],"reservation_ids":[],"adjustment_ids":[],"todo_items":[],"confirmation_requests":[],"passengers_attributes":[],"vehicles_attributes":[],"reservations_attributes":[],"adjustments_attributes":[],"payments_attributes":[],"payment_types_attributes":[{"id":4,"name":"visa","description":"visa","transaction_fee":"0.0","active":true,"position":3,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":"Visa","payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":5,"name":"master","description":"master","transaction_fee":"0.0","active":true,"position":4,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":7,"name":"PayPal","description":"Payments
|
119
119
|
made via PayPal account","transaction_fee":"0.0","active":true,"position":6,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"paypal","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":10,"name":"Opal
|
120
120
|
Pay","description":"Opal Payments","transaction_fee":"0.0","active":true,"position":9,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"opal_pay","gateway":null,"on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":false,"creditlink":false,"surchargeable":false}],"issued_tickets_attributes":[]}'
|
121
|
-
http_version:
|
121
|
+
http_version:
|
122
122
|
recorded_at: Wed, 21 Mar 2018 04:40:14 GMT
|
123
123
|
recorded_with: VCR 4.0.0
|
@@ -83,14 +83,14 @@ http_interactions:
|
|
83
83
|
notes_for_vendor","vendor_staff note_for_inventory_type_change"],"report_reservation_changes":false,"vendor_pnr":null,"pick_up_information":null,"drop_off_information":null,"vendor_staff":null,"notes_for_vendor":null,"passenger_ids":[1,2],"passenger_splits":[{"id":3,"consumer_id":1,"consumer_splittable_id":2,"gross_in_cents":6000,"commission_in_cents":0,"consumer_splittable_type":"Reservation","created_at":null,"updated_at":null,"commission_percentage":"0.0","length_multiplier":"1.0"},{"id":4,"consumer_id":2,"consumer_splittable_id":2,"gross_in_cents":6000,"commission_in_cents":0,"consumer_splittable_type":"Reservation","created_at":null,"updated_at":null,"commission_percentage":"0.0","length_multiplier":"1.0"}],"vehicle_ids":[],"vehicle_splits":[],"consumer_grosses":{"1":3000,"2":3000}}],"extra_pick":null,"child_resource":null,"pending_confirmation":false,"confirmation_request_fields":[],"report_reservation_changes":false,"vendor_pnr":null,"pick_up_information":null,"drop_off_information":null,"vendor_staff":null,"notes_for_vendor":null,"passenger_ids":[1,2],"passenger_splits":[{"id":1,"consumer_id":1,"consumer_splittable_id":1,"gross_in_cents":0,"commission_in_cents":0,"consumer_splittable_type":"Reservation","created_at":null,"updated_at":null,"commission_percentage":"0.0","length_multiplier":"1.0"},{"id":2,"consumer_id":2,"consumer_splittable_id":1,"gross_in_cents":0,"commission_in_cents":0,"consumer_splittable_type":"Reservation","created_at":null,"updated_at":null,"commission_percentage":"0.0","length_multiplier":"1.0"}],"vehicle_ids":[],"vehicle_splits":[],"consumer_grosses":{"1":0,"2":0}}],"adjustments_attributes":[],"payments_attributes":[],"payment_types_attributes":[{"id":4,"name":"visa","description":"visa","transaction_fee":"0.0","active":true,"position":3,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":"Visa","payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":5,"name":"master","description":"master","transaction_fee":"0.0","active":true,"position":4,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":7,"name":"PayPal","description":"Payments
|
84
84
|
made via PayPal account","transaction_fee":"0.0","active":true,"position":6,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"paypal","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":10,"name":"Opal
|
85
85
|
Pay","description":"Opal Payments","transaction_fee":"0.0","active":true,"position":9,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"opal_pay","gateway":null,"on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":false,"creditlink":false,"surchargeable":false}],"issued_tickets_attributes":[]}'
|
86
|
-
http_version:
|
86
|
+
http_version:
|
87
87
|
recorded_at: Wed, 21 Mar 2018 04:40:17 GMT
|
88
88
|
- request:
|
89
89
|
method: put
|
90
90
|
uri: http://test.qt.sealink.com.au:8080/api/bookings/1/update_with_nested_attributes.json
|
91
91
|
body:
|
92
92
|
encoding: UTF-8
|
93
|
-
string: booking
|
93
|
+
string: booking%5Bcustomer_contact_name%5D=New%20Name&booking%5Bconsumers%5D%5B%5D%5Bid%5D=1&booking%5Bconsumers%5D%5B%5D%5Btitle%5D=Mr&booking%5Bconsumers%5D%5B%5D%5Bfirst_name%5D=New&booking%5Bconsumers%5D%5B%5D%5Blast_name%5D=Name
|
94
94
|
headers:
|
95
95
|
Content-Length:
|
96
96
|
- '0'
|
@@ -141,7 +141,7 @@ http_interactions:
|
|
141
141
|
body:
|
142
142
|
encoding: UTF-8
|
143
143
|
string: '{"id":1}'
|
144
|
-
http_version:
|
144
|
+
http_version:
|
145
145
|
recorded_at: Wed, 21 Mar 2018 04:40:18 GMT
|
146
146
|
- request:
|
147
147
|
method: get
|
@@ -227,6 +227,6 @@ http_interactions:
|
|
227
227
|
notes_for_vendor","vendor_staff note_for_inventory_type_change"],"report_reservation_changes":false,"vendor_pnr":null,"pick_up_information":null,"drop_off_information":null,"vendor_staff":null,"notes_for_vendor":null,"passenger_ids":[1,2],"passenger_splits":[{"id":3,"consumer_id":1,"consumer_splittable_id":2,"gross_in_cents":6000,"commission_in_cents":0,"consumer_splittable_type":"Reservation","created_at":null,"updated_at":null,"commission_percentage":"0.0","length_multiplier":"1.0"},{"id":4,"consumer_id":2,"consumer_splittable_id":2,"gross_in_cents":6000,"commission_in_cents":0,"consumer_splittable_type":"Reservation","created_at":null,"updated_at":null,"commission_percentage":"0.0","length_multiplier":"1.0"}],"vehicle_ids":[],"vehicle_splits":[],"consumer_grosses":{"1":3000,"2":3000}}],"extra_pick":null,"child_resource":null,"pending_confirmation":false,"confirmation_request_fields":[],"report_reservation_changes":false,"vendor_pnr":null,"pick_up_information":null,"drop_off_information":null,"vendor_staff":null,"notes_for_vendor":null,"passenger_ids":[1,2],"passenger_splits":[{"id":1,"consumer_id":1,"consumer_splittable_id":1,"gross_in_cents":0,"commission_in_cents":0,"consumer_splittable_type":"Reservation","created_at":null,"updated_at":null,"commission_percentage":"0.0","length_multiplier":"1.0"},{"id":2,"consumer_id":2,"consumer_splittable_id":1,"gross_in_cents":0,"commission_in_cents":0,"consumer_splittable_type":"Reservation","created_at":null,"updated_at":null,"commission_percentage":"0.0","length_multiplier":"1.0"}],"vehicle_ids":[],"vehicle_splits":[],"consumer_grosses":{"1":0,"2":0}}],"adjustments_attributes":[],"payments_attributes":[],"payment_types_attributes":[{"id":4,"name":"visa","description":"visa","transaction_fee":"0.0","active":true,"position":3,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":"Visa","payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":5,"name":"master","description":"master","transaction_fee":"0.0","active":true,"position":4,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"credit_card","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":7,"name":"PayPal","description":"Payments
|
228
228
|
made via PayPal account","transaction_fee":"0.0","active":true,"position":6,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"paypal","gateway":"braintree","on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":true,"creditlink":false,"surchargeable":false},{"id":10,"name":"Opal
|
229
229
|
Pay","description":"Opal Payments","transaction_fee":"0.0","active":true,"position":9,"for_frequent_traveller_redemption":false,"comment_required":false,"created_at":null,"updated_at":null,"credit_card_brand":null,"payment_method":"opal_pay","gateway":null,"on_account":false,"ticket_holding":false,"requires_staff":false,"internal":false,"redirect":false,"background":false,"creditlink":false,"surchargeable":false}],"issued_tickets_attributes":[]}'
|
230
|
-
http_version:
|
230
|
+
http_version:
|
231
231
|
recorded_at: Wed, 21 Mar 2018 04:40:19 GMT
|
232
232
|
recorded_with: VCR 4.0.0
|
@@ -5,7 +5,7 @@ http_interactions:
|
|
5
5
|
uri: http://test.qt.sealink.com.au:8080/api/reservations.json
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: resource_id=4&first_travel_date=2016-03-01&passenger_types_numbers
|
8
|
+
string: resource_id=4&first_travel_date=2016-03-01&passenger_types_numbers%5B1%5D=2&passenger_types_numbers%5B2%5D=1
|
9
9
|
headers:
|
10
10
|
Content-Length:
|
11
11
|
- '0'
|
@@ -62,6 +62,6 @@ http_interactions:
|
|
62
62
|
Date:","date_end_label":"End Date:","expires":false,"expiry":"*NA*","has_skipped_reservation_groups":false,"editable_reservation_groups":[],"tariff_level_name":"Auto
|
63
63
|
Priced as: Rack Rate","gross_including_packaged_item_in_cents":0,"pre_adjusted_gross_including_packaged_item_in_cents":0,"gross_in_cents":0,"pre_adjusted_gross_in_cents":0,"pre_adjusted_commission_in_cents":0,"cost_in_cents":0,"rules":[],"package":false,"sub_reservation_depth":0,"extra_pick":null,"child_resource":null,"pending_confirmation":false,"confirmation_request_fields":["pick_up_information","drop_off_information","vendor_pnr
|
64
64
|
notes_for_vendor","vendor_staff note_for_inventory_type_change"],"report_reservation_changes":false,"vendor_pnr":null,"pick_up_information":null,"drop_off_information":null,"vendor_staff":null,"notes_for_vendor":null,"passenger_ids":[],"passenger_splits":[],"vehicle_ids":[],"vehicle_splits":[],"consumer_grosses":{}}'
|
65
|
-
http_version:
|
65
|
+
http_version:
|
66
66
|
recorded_at: Wed, 21 Mar 2018 04:40:41 GMT
|
67
67
|
recorded_with: VCR 4.0.0
|
@@ -5,7 +5,7 @@ http_interactions:
|
|
5
5
|
uri: http://test.qt.sealink.com.au:8080/api/price_quotes/calculate
|
6
6
|
body:
|
7
7
|
encoding: UTF-8
|
8
|
-
string: reservations
|
8
|
+
string: reservations%5B%5D%5Bresource_id%5D=7&reservations%5B%5D%5Bquantity%5D=2&reservations%5B%5D%5Bfirst_travel_date%5D=2016-04-15
|
9
9
|
headers:
|
10
10
|
Content-Length:
|
11
11
|
- '0'
|
@@ -56,14 +56,14 @@ http_interactions:
|
|
56
56
|
body:
|
57
57
|
encoding: UTF-8
|
58
58
|
string: '{"quoted_booking_gross_in_cents":6400,"original_booking_gross_in_cents":0,"applied_rules":[],"quoted_booking_breakdown":[{"quoted_gross_in_cents":6400,"original_gross_in_cents":0,"applied_rules":[],"reservation":{"id":null,"resource_id":7,"first_travel_date":"2016-04-15","passengers":{},"vehicles":[]},"new":true,"deleted":false}]}'
|
59
|
-
http_version:
|
59
|
+
http_version:
|
60
60
|
recorded_at: Wed, 21 Mar 2018 04:40:31 GMT
|
61
61
|
- request:
|
62
62
|
method: post
|
63
63
|
uri: http://test.qt.sealink.com.au:8080/api/price_quotes/calculate
|
64
64
|
body:
|
65
65
|
encoding: UTF-8
|
66
|
-
string: reservations
|
66
|
+
string: reservations%5B%5D%5Bresource_id%5D=7&reservations%5B%5D%5Bquantity%5D=3&reservations%5B%5D%5Bfirst_travel_date%5D=2016-04-15
|
67
67
|
headers:
|
68
68
|
Content-Length:
|
69
69
|
- '0'
|
@@ -116,6 +116,6 @@ http_interactions:
|
|
116
116
|
string: '{"quoted_booking_gross_in_cents":4800,"original_booking_gross_in_cents":0,"applied_rules":["Special
|
117
117
|
Offer"],"quoted_booking_breakdown":[{"quoted_gross_in_cents":4800,"original_gross_in_cents":0,"applied_rules":["Special
|
118
118
|
Offer"],"reservation":{"id":null,"resource_id":7,"first_travel_date":"2016-04-15","passengers":{},"vehicles":[]},"new":true,"deleted":false}]}'
|
119
|
-
http_version:
|
119
|
+
http_version:
|
120
120
|
recorded_at: Wed, 21 Mar 2018 04:40:31 GMT
|
121
121
|
recorded_with: VCR 4.0.0
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: quicktravel_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Noack
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2021-01-06 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: httparty
|
@@ -18,14 +18,14 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version:
|
21
|
+
version: 0.18.1
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - ">="
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version:
|
28
|
+
version: 0.18.1
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: activesupport
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
@@ -251,7 +251,7 @@ dependencies:
|
|
251
251
|
- !ruby/object:Gem::Version
|
252
252
|
version: '0'
|
253
253
|
- !ruby/object:Gem::Dependency
|
254
|
-
name:
|
254
|
+
name: pry
|
255
255
|
requirement: !ruby/object:Gem::Requirement
|
256
256
|
requirements:
|
257
257
|
- - ">="
|
@@ -270,11 +270,13 @@ executables: []
|
|
270
270
|
extensions: []
|
271
271
|
extra_rdoc_files: []
|
272
272
|
files:
|
273
|
+
- ".github/dependabot.yml"
|
274
|
+
- ".github/workflows/release.yml"
|
275
|
+
- ".github/workflows/ruby.yml"
|
273
276
|
- ".gitignore"
|
274
277
|
- ".rspec"
|
275
278
|
- ".rubocop.yml"
|
276
279
|
- ".ruby-version"
|
277
|
-
- ".travis.yml"
|
278
280
|
- CHANGELOG.md
|
279
281
|
- Gemfile
|
280
282
|
- LICENSE
|
@@ -282,8 +284,8 @@ files:
|
|
282
284
|
- Rakefile
|
283
285
|
- examples/example_config.rb
|
284
286
|
- examples/login_example.rb
|
285
|
-
- gemfiles/
|
286
|
-
- gemfiles/
|
287
|
+
- gemfiles/rails60.gemfile
|
288
|
+
- gemfiles/rails61.gemfile
|
287
289
|
- lib/extensions.rb
|
288
290
|
- lib/quick_travel.rb
|
289
291
|
- lib/quick_travel/accommodation.rb
|
@@ -450,14 +452,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
450
452
|
requirements:
|
451
453
|
- - ">="
|
452
454
|
- !ruby/object:Gem::Version
|
453
|
-
version: '
|
455
|
+
version: '2.6'
|
454
456
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
455
457
|
requirements:
|
456
458
|
- - ">="
|
457
459
|
- !ruby/object:Gem::Version
|
458
460
|
version: '0'
|
459
461
|
requirements: []
|
460
|
-
rubygems_version: 3.
|
462
|
+
rubygems_version: 3.2.3
|
461
463
|
signing_key:
|
462
464
|
specification_version: 4
|
463
465
|
summary: Booking process using QuickTravel API
|
data/.travis.yml
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
rvm:
|
3
|
-
- 2.5
|
4
|
-
- 2.6
|
5
|
-
- 2.7
|
6
|
-
before_install:
|
7
|
-
- gem install bundler
|
8
|
-
script: bundle && bundle exec rake spec
|
9
|
-
gemfile:
|
10
|
-
- gemfiles/rails5.gemfile
|
11
|
-
- gemfiles/rails6.gemfile
|
12
|
-
notifications:
|
13
|
-
email:
|
14
|
-
- support@travellink.com.au
|
15
|
-
sudo: false
|
16
|
-
cache: bundler
|