validation_matcher 2.0.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +21 -0
- data/lib/validation_matcher/version.rb +1 -1
- data/validation_matcher.gemspec +1 -0
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98b84120db3a3b9161ee52fa111c725e40c5619a
|
4
|
+
data.tar.gz: a9fdc92cf3a81969d17940c41ea9e288e23f3d30
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe8ff27fb896a5bdaee9303e9ffcf66448664ce0ce774b633967efe0ea6fec1ed117b9c715e64dd658c63946bdfa8dc902dc54683649e1ace9657d036406cf74
|
7
|
+
data.tar.gz: 83de8591e14d9d54567dd23388aff4a8b656fa7bd5c206af8236bd723ddc320340c410053c028c18bd023a0d7a5d7c8c21be8ea13edd329e8ee59a741a470ecb
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2012-2015 Byron Bowerman
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/validation_matcher.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: validation_matcher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- BM5k
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec-expectations
|
@@ -105,6 +105,7 @@ files:
|
|
105
105
|
- ".rspec"
|
106
106
|
- ".travis.yml"
|
107
107
|
- Gemfile
|
108
|
+
- LICENSE
|
108
109
|
- README.md
|
109
110
|
- Rakefile
|
110
111
|
- lib/validation_matcher.rb
|
@@ -113,7 +114,8 @@ files:
|
|
113
114
|
- spec/thing_spec.rb
|
114
115
|
- validation_matcher.gemspec
|
115
116
|
homepage: ''
|
116
|
-
licenses:
|
117
|
+
licenses:
|
118
|
+
- MIT
|
117
119
|
metadata: {}
|
118
120
|
post_install_message:
|
119
121
|
rdoc_options: []
|
@@ -131,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
131
133
|
version: '0'
|
132
134
|
requirements: []
|
133
135
|
rubyforge_project: validation_matcher
|
134
|
-
rubygems_version: 2.4.
|
136
|
+
rubygems_version: 2.4.6
|
135
137
|
signing_key:
|
136
138
|
specification_version: 4
|
137
139
|
summary: RSpec matcher for ActiveModel validations
|