tickethub 0.3.36 → 0.3.37

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: 883c22c49f22c6ff4f799e5927fa0f07335a0945
4
- data.tar.gz: b3ba61e5abf2e6d2823439825934982a21bf76e8
3
+ metadata.gz: cef201ce3ff0e3fe70a8c7b85ea4153996fa469b
4
+ data.tar.gz: 38556058483bb42ce9ac733e10286b60a9e4ba19
5
5
  SHA512:
6
- metadata.gz: 0fde146ccf4674554abe3fe31617a0ed7e20c64b81421f530a75705d132f4812bee32f27bb2fc2baeb68a161289593bacf7a48c2e3c05e45ec7800fd6257b1d9
7
- data.tar.gz: 39d5e9a31a1d7e94bf7156c986e5d9e409b686748518b365b0e60369917039159e3075cba3055fa5bf372f733bafe50aa50baba0533d9543c236659ff82514ed
6
+ metadata.gz: b02ce6d86378ae1a67504e0c4402d83e14e62bd7d3e4cea34bcc6f10bc10ee5ee498c4829c2ad76df7817c34b5a0f630544c24fb26854812146d47f740f415f5
7
+ data.tar.gz: 0ff15effb35656a64a377c3c74327785f5efd0a6f368fb0804272b28da1548a2eee56ea5ff93333acf7ea630fb943da3a8c8afcd18ed8a0b2959a5ea5f320e9e
@@ -11,6 +11,8 @@ module Tickethub
11
11
  require_relative 'payment/credit'
12
12
  require_relative 'payment/direct'
13
13
  require_relative 'payment/stripe'
14
+ require_relative 'payment/paypal'
15
+ require_relative 'payment/handpoint'
14
16
  require_relative 'payment/complimentary'
15
17
 
16
18
  require_relative 'order'
@@ -0,0 +1,7 @@
1
+ require_relative '../payment'
2
+
3
+ module Tickethub
4
+ class Supplier::Payment::Handpoint < Supplier::Payment
5
+ polymorphic 'handpoint'
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ require_relative '../payment'
2
+
3
+ module Tickethub
4
+ class Supplier::Payment::Paypal < Supplier::Payment
5
+ polymorphic 'paypal'
6
+ end
7
+ end
@@ -1,3 +1,3 @@
1
1
  module Tickethub
2
- VERSION = '0.3.36'
2
+ VERSION = '0.3.37'
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.3.36
4
+ version: 0.3.37
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-07-23 00:00:00.000000000 Z
11
+ date: 2015-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -169,6 +169,8 @@ files:
169
169
  - lib/tickethub/supplier/payment/complimentary.rb
170
170
  - lib/tickethub/supplier/payment/credit.rb
171
171
  - lib/tickethub/supplier/payment/direct.rb
172
+ - lib/tickethub/supplier/payment/handpoint.rb
173
+ - lib/tickethub/supplier/payment/paypal.rb
172
174
  - lib/tickethub/supplier/payment/stripe.rb
173
175
  - lib/tickethub/supplier/product.rb
174
176
  - lib/tickethub/supplier/purchase.rb