ruby_bots 0.0.18 → 0.0.19

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
  SHA256:
3
- metadata.gz: 479eb599bb7d609945beb6cd0d2648ee76f7e3358f5dc7c28ec45f485221b252
4
- data.tar.gz: 4019003a128b3a8bd7e13fdac2469eaee10320fe4b1922333f4d38b7153d577a
3
+ metadata.gz: a079a3af0b9f2b688aa2bb5d3f59c2936ae02acf1bbe72c24b00c0ba1eb587ab
4
+ data.tar.gz: bde27597290c67b77527fb591f6eae2ce630cf9934c6d503f5a9a7152ee29e7f
5
5
  SHA512:
6
- metadata.gz: a9fbafa3517990b266602d631439a96bbba87f639d12e5607fcb0d219a548526c5868d1a63f948a19bdf64534f0adc0345fdbfd47f6446c437e6e1918a13b324
7
- data.tar.gz: a00b120207f15c70a74520554093609f7740fc27ae1dd94ebac93269c110ff9f82f42672b5cf0198a84ff5e2b5640fccc7f3cc4b67f03822ebcc477bad50bbf4
6
+ metadata.gz: afa58f62e18ebd31ff703749a5bf786b8e7d7174972cd55c2b83f35778d348911405ab3d412659f3db9911d68433474664fee870ed909152bbe45760d10fe69d
7
+ data.tar.gz: 9296e14a7827194f85bde5c40eee8be47c9f86869ab3c6a5004739dc8286b273dfbad9a0828724e27aaf471dacd7df49cf30f8fcd4410c721c685378b0c10141
@@ -28,7 +28,7 @@ module RubyBots
28
28
  send(validator, input)
29
29
  end
30
30
 
31
- if @errors.empty?
31
+ if self.errors.empty?
32
32
  output = run(input)
33
33
  else
34
34
  raise RubyBots::InvalidInputError.new(errors: @errors)
@@ -39,7 +39,7 @@ module RubyBots
39
39
  send(validator, output)
40
40
  end
41
41
 
42
- if @errors.any?
42
+ if self.errors.any?
43
43
  raise RubyBots::InvalidOutputError.new(errors: @errors)
44
44
  end
45
45
 
@@ -1,3 +1,3 @@
1
1
  module RubyBots
2
- VERSION = "0.0.18".freeze
2
+ VERSION = "0.0.19".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_bots
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.18
4
+ version: 0.0.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Paulson