fluent_validation 0.0.4 → 0.0.5

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: 7ecee8baed33039c0722b3130cf3c941e6234329
4
- data.tar.gz: 2c6c36bf834751781320111537bc091b469ba340
3
+ metadata.gz: b5def6eed9a533a078facea421870a4f8b61641e
4
+ data.tar.gz: 944486fa02704cb9866a767f3f13a88f60ae4818
5
5
  SHA512:
6
- metadata.gz: d650612eb31c1643d98b4031e654ce7e51c58c53e64b6a01d2f5d626007c4244c2725416f54f161d2f488c0d8881d9de10c259afe3163357b71a4fd513830210
7
- data.tar.gz: 63f5a5be4f37324ea92c4962ae295f9995b8ea228908bb57b2efa970c35ed10c2c0eb7c1266c9258104dc29d8db49e6f874f0bd71032a5ef6d7c1be0e5e5eafc
6
+ metadata.gz: 508edb43c1cf7de56656dfcf1a0fa1d11b37c01e462f8635c0bfc8386977786661df1f56e294b3831e25af01f39253383399ea793788594d0a5a85f72a123b68
7
+ data.tar.gz: bef78ed35ce1ab551e70555b320c23038508fb419955f0e956ffc6236b75c8df0ade3271eb6ff0009d5ebb4d26b87ccc0e4d7ccaae7573e205d098999aa3baca
@@ -3,12 +3,12 @@ module FluentValidation
3
3
  class ValidationFailure
4
4
  attr_reader :attribute_name
5
5
  attr_reader :error_code
6
- attr_reader :message
6
+ attr_reader :error_message
7
7
 
8
- def initialize (attribute_name, error_code, message)
8
+ def initialize (attribute_name, error_code, error_message)
9
9
  @attribute_name = attribute_name
10
10
  @error_code = error_code
11
- @message = message
11
+ @error_message = error_message
12
12
  end
13
13
  end
14
14
  end
@@ -1,3 +1,3 @@
1
1
  module FluentValidation
2
- VERSION = '0.0.4'
2
+ VERSION = '0.0.5'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent_validation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Yu