spy_alley_application 0.3.1 → 0.3.2

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
  SHA256:
3
- metadata.gz: 51d7a160db3dd8f988a34c01b9c6db7602c40e1f21077f4edf9596c545c79ca0
4
- data.tar.gz: f34ce4a22aa442faf10700e5321a79e74b1f526a978d75f505905d9494898c8f
3
+ metadata.gz: 921a83f9e79208448535756205a5f615aa5a2ee838e61f9c8d32f39940dc2499
4
+ data.tar.gz: 744d81acdf9769e51e105ac56fedf82fa43c5bc192df0d4fda6b094467df4a94
5
5
  SHA512:
6
- metadata.gz: 59459b4bc725c52991c2b6bd9685d05812ccf6d9fb9ca850f3f5229c1bca88c93ac0ed114e1dab35cedda9561f6fd13f758a3e0990c6d995f437a84730c67054
7
- data.tar.gz: 8492bf6951da16e712f90d7280e8e6d549ac5be4fa6552bec712075ee5c9bd463db3fb135fd9e3154b597415768c5e16ef6a15b4789a2b4ca4514e02ce4d6adc
6
+ metadata.gz: 86afa6a002cbcb3bb6282b1d1923b5156057888e4d272c189ec2b0024e4c565a416650946b4efeeb4e20bbc25c7737cf3245ce1544e2d564cfdb02dac83fdb24
7
+ data.tar.gz: 5adf89ee6bcf5827a878d601f3cae0d8f32652750a23c4c78a5f56be715ffad350664ae814bc88ea29702573031c7eeec10b50bb989883876540979dfec1e897
@@ -13,7 +13,7 @@ module SpyAlleyApplication
13
13
 
14
14
  def accept(visitor, **args)
15
15
  @can_handle_move_card_used.(visitor)
16
- visitor.handle_card_card_used(self, args)
16
+ visitor.handle_move_card_used(self, args)
17
17
  end
18
18
  end
19
19
  end
@@ -4,10 +4,10 @@ module SpyAlleyApplication
4
4
  module Results
5
5
  module Nodes
6
6
  class PassOptionNode
7
- @@can_handle_roll_die_option = ::Types.Interface(:handle_roll_die_option)
7
+ @@can_handle_pass_option = ::Types.Interface(:handle_pass_option)
8
8
  def accept(visitor, **args)
9
- @@can_handle_roll_die_option.(visitor)
10
- visitor.handle_roll_die_option(self, args)
9
+ @@can_handle_pass_option.(visitor)
10
+ visitor.handle_pass_option(self, args)
11
11
  end
12
12
  end
13
13
  end
@@ -6,12 +6,12 @@ module SpyAlleyApplication
6
6
  module Results
7
7
  module Nodes
8
8
  class UseMoveCardOptionNode < Dry::Struct
9
- @@can_handle_use_move_card = ::Types.Interface(:handle_use_move_card)
9
+ @@can_handle_use_move_card_option = ::Types.Interface(:handle_use_move_card_option)
10
10
  attribute :card_list, ::Types::ArrayOfStrictInteger
11
11
 
12
12
  def accept(visitor, **args)
13
- @@can_handle_use_move_card.(visitor)
14
- visitor.handle_use_move_card(self, args)
13
+ @@can_handle_use_move_card_option.(visitor)
14
+ visitor.handle_use_move_card_option(self, args)
15
15
  end
16
16
  end
17
17
  end
@@ -1,3 +1,3 @@
1
1
  module SpyAlleyApplication
2
- VERSION = '0.3.1'
2
+ VERSION = '0.3.2'
3
3
  end
@@ -2,7 +2,7 @@ lib = File.expand_path("lib", __dir__)
2
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
  require "spy_alley_application/version"
4
4
 
5
- Gem::Specification.new 'spy_alley_application', '0.3.1' do |spec|
5
+ Gem::Specification.new 'spy_alley_application', '0.3.2' do |spec|
6
6
  spec.name = 'spy_alley_application'
7
7
  spec.version = SpyAlleyApplication::VERSION
8
8
  spec.authors = ['Colin Horner']
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spy_alley_application
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Colin Horner