tickethub 0.2.6 → 0.2.7

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ea77cb0b5daeabed2f6d3b3909c1558492398d31
4
- data.tar.gz: 86720566c48efb7e79bf42b03b750a5a7417e3aa
3
+ metadata.gz: 5ad257d6509a64c6f7263ecd6a6310856d6ced4f
4
+ data.tar.gz: 669c68b4b85cfe0b51d507a803464dd1deb191fa
5
5
  SHA512:
6
- metadata.gz: c4b4f2c8e7306af4cd6f85a352efb14d4465f2f26013973b90e48437a58a3d1df379a28274bd61c76ab3640dbfc6eba043b3ee5489c3b85fd9647d8805f842e7
7
- data.tar.gz: 34563a207761e46c81836a856ac8b2616016209d3261e00fe150f998b69f603f838b8a80784aa1762de19fa0a9b8ca6e4678b2f5f926a2afff63b56bde7d98d5
6
+ metadata.gz: 3a068299b9a909616480050007d81e2c326616933b52ab590415cf61c87f291d7b210e6e8d68382af2db24167b43c26c96d83f9834398941aa1f0fa687981696
7
+ data.tar.gz: d5f0799d5017bfe748beef4a8c87dcbdd1ce3c91e2b0f5eda85b28621b03cadf0f6fea88259ff8811cf5853132b93ef68ccfaa4a2c3a343aeb1d57a2146fc791
@@ -8,7 +8,7 @@ module Tickethub
8
8
  require_relative 'payment/cash'
9
9
  require_relative 'payment/credit'
10
10
  require_relative 'payment/direct'
11
- require_relative 'payment/gratuity'
11
+ require_relative 'payment/complimentary'
12
12
 
13
13
  require_relative 'order'
14
14
  require_relative 'user'
@@ -0,0 +1,7 @@
1
+ require_relative '../payment'
2
+
3
+ module Tickethub
4
+ class Supplier::Payment::Complimentary < Supplier::Payment
5
+ polymorphic 'complimentary'
6
+ end
7
+ end
@@ -1,3 +1,3 @@
1
1
  module Tickethub
2
- VERSION = '0.2.6'
2
+ VERSION = '0.2.7'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tickethub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oliver Morgan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-19 00:00:00.000000000 Z
11
+ date: 2015-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -131,9 +131,9 @@ files:
131
131
  - lib/tickethub/supplier/payment.rb
132
132
  - lib/tickethub/supplier/payment/card.rb
133
133
  - lib/tickethub/supplier/payment/cash.rb
134
+ - lib/tickethub/supplier/payment/complimentary.rb
134
135
  - lib/tickethub/supplier/payment/credit.rb
135
136
  - lib/tickethub/supplier/payment/direct.rb
136
- - lib/tickethub/supplier/payment/gratuity.rb
137
137
  - lib/tickethub/supplier/product.rb
138
138
  - lib/tickethub/supplier/question.rb
139
139
  - lib/tickethub/supplier/rate.rb
@@ -174,7 +174,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
174
174
  version: '0'
175
175
  requirements: []
176
176
  rubyforge_project:
177
- rubygems_version: 2.2.1
177
+ rubygems_version: 2.4.5
178
178
  signing_key:
179
179
  specification_version: 4
180
180
  summary: API client for tickethub.io
@@ -1,7 +0,0 @@
1
- require_relative '../payment'
2
-
3
- module Tickethub
4
- class Supplier::Payment::Gratuity < Supplier::Payment
5
- polymorphic 'gratuity'
6
- end
7
- end