seat_geek 0.10.0 → 0.10.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 95e5020ae2e90d18075fbecd9dbf837a463d973f
4
- data.tar.gz: 13c8bb1e08df85bbb089ea9f22728bf521b09abd
3
+ metadata.gz: 77fa0f82501ee76900802daf62901bf50d185df0
4
+ data.tar.gz: 925db0245bb823cd0aebf7f2d66d669e4528855a
5
5
  SHA512:
6
- metadata.gz: 3ed597831171b62bb1d004aa1a3a63aa9501475323fb9462c0d2ab51b99460fbb50cbcb57a75c6a7f79afb9654e0173c7a11ccc45027b6f951f3e06b049d1e1c
7
- data.tar.gz: e0f13e1d5463800df33a9cd463e55df2ae46afc0120b674b0e88f3b4ad1fb8a251fc3dfc0eeb26321d9823093ca8da7947ee934a6f38f15be4f6e064b10b033e
6
+ metadata.gz: d682a7f2c463c694fbbe152cc0fc791d57b594324cd41ab4dd8d569b280b485e5eba33416221234aa37bf45b3a1901ce31d2f53aa5da8a4c36f8eed73d19e849
7
+ data.tar.gz: e183ddb215e4744485d85286546a6015b1fcb89ec17a6e9d8c7dd2c8fbdbfeb9321268633c6014e5231e12433672256af4d2c7c710367a964fc7efd33e4aac81
@@ -1,8 +1,8 @@
1
1
  module SeatGeek
2
2
  module Taxonomies
3
3
  class Concert
4
- def initialize(sub_taxonomies:)
5
- @taxonomies = sub_taxonomies
4
+ def initialize(child_taxonomies:)
5
+ @taxonomies = child_taxonomies
6
6
  end
7
7
 
8
8
  def all
@@ -1,8 +1,8 @@
1
1
  module SeatGeek
2
2
  module Taxonomies
3
3
  class Sports
4
- def initialize(taxonomies:)
5
- @taxonomies = taxonomies
4
+ def initialize(child_taxonomies:)
5
+ @taxonomies = child_taxonomies
6
6
  end
7
7
 
8
8
  def all
@@ -1,8 +1,8 @@
1
1
  module SeatGeek
2
2
  module Taxonomies
3
3
  class Theater
4
- def initialize(sub_taxonomies:)
5
- @taxonomies = sub_taxonomies
4
+ def initialize(child_taxonomies:)
5
+ @taxonomies = child_taxonomies
6
6
  end
7
7
 
8
8
  def all
@@ -36,7 +36,7 @@ module SeatGeek
36
36
  child_taxonomies << taxonomy if taxonomy['parent_id'].to_s[0] == parent_id.to_s[0]
37
37
  end
38
38
 
39
- finished_tree[parent_object['name'].to_sym] = tree_klass[parent_object['name']].new(taxonomies: child_taxonomies)
39
+ finished_tree[parent_object['name'].to_sym] = tree_klass[parent_object['name']].new(child_taxonomies: child_taxonomies)
40
40
  end
41
41
  end
42
42
 
@@ -1,3 +1,3 @@
1
1
  module SeatGeek
2
- VERSION = "0.10.0"
2
+ VERSION = "0.10.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: seat_geek
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Moon