quicktravel_client 2.2.0 → 2.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/quick_travel.rb +1 -0
- data/lib/quick_travel/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ccf70f77e6dc2aa9c744c83f62bb11f17ef813a
|
4
|
+
data.tar.gz: b431ad4418edddde20d1ba2990f99f889e37a689
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5dbfca0835eb101b12b893cd709d5355b2eed2e640cdcd7bc23d922c6ff08c73dfd564b1a807bfd2fcf8ab1274dbcc0a956535f0ae88abc9002be7dd39b30768
|
7
|
+
data.tar.gz: f5444c3e59099646f69e4534f8b9250e145faa326ae366ef6b007996a7027b51c409561ae2528e58d824b289afc3f959bb443685eb662401de20bbade74cc255
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,10 @@ 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
|
+
## [2.2.1] - 2016-04-18
|
7
|
+
### Fixed
|
8
|
+
- Adds missing require for PriceQuote adapter
|
9
|
+
|
6
10
|
## [2.2.0] - 2016-04-18
|
7
11
|
### Added
|
8
12
|
- PriceQuote adapter
|
data/lib/quick_travel.rb
CHANGED
@@ -42,6 +42,7 @@ module QuickTravel
|
|
42
42
|
require 'quick_travel/payment'
|
43
43
|
require 'quick_travel/background_check'
|
44
44
|
require 'quick_travel/payment_type'
|
45
|
+
require 'quick_travel/price_quote'
|
45
46
|
require 'quick_travel/product_type'
|
46
47
|
require 'quick_travel/property'
|
47
48
|
require 'quick_travel/property_facility'
|
data/lib/quick_travel/version.rb
CHANGED