tickethub 0.3.93 → 0.3.94
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/tickethub/supplier/reseller.rb +2 -0
- data/lib/tickethub/supplier/tax.rb +3 -0
- data/lib/tickethub/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1491d7488857472f18ae091c3da80ffdd8100903
|
4
|
+
data.tar.gz: b02c9a4c6cbe8861d14381c0f91a405993f71ae5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9cf1859ea0aadbe75706e4cf24a572d1460f2775aaa0420a82899fe20c0032ab1105af4ee7291da386b0230a111f2dbfd22416f94dfac07a2cfe2f3ccfa42ea0
|
7
|
+
data.tar.gz: a0a5224413ec3a3d011433d2495797b385f3e067ab671c674976f8e5114ab0140166d1ff0ca37dca3afef9e4bcb52e96a4074ca1b19be9843a6a71646734246a
|
@@ -10,6 +10,7 @@ module Tickethub
|
|
10
10
|
require_relative 'channel'
|
11
11
|
require_relative 'broadcast'
|
12
12
|
require_relative 'rate'
|
13
|
+
require_relative 'tax'
|
13
14
|
|
14
15
|
require_relative '../contact'
|
15
16
|
require_relative '../address'
|
@@ -23,6 +24,7 @@ module Tickethub
|
|
23
24
|
collection :messages, Supplier::Message
|
24
25
|
collection :channels, Supplier::Channel
|
25
26
|
collection :rates, Supplier::Rate
|
27
|
+
collection :taxes, Supplier::Tax
|
26
28
|
|
27
29
|
association :contact, Tickethub::Contact
|
28
30
|
association :address, Tickethub::Address
|
@@ -6,9 +6,12 @@ module Tickethub
|
|
6
6
|
|
7
7
|
require_relative 'fee'
|
8
8
|
require_relative 'product'
|
9
|
+
require_relative 'reseller'
|
9
10
|
|
10
11
|
association :product, Supplier::Product
|
12
|
+
|
11
13
|
collection :fees, Supplier::Fee
|
14
|
+
collection :resellers, Supplier::Reseller
|
12
15
|
|
13
16
|
attribute :updated_at, type: :datetime
|
14
17
|
attribute :created_at, type: :datetime
|
data/lib/tickethub/version.rb
CHANGED
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.
|
4
|
+
version: 0.3.94
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Oliver Morgan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|