assert_value 1.3 → 1.3.1
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 +7 -0
- data/assert_value.gemspec +1 -1
- data/lib/assert_value.rb +0 -4
- metadata +7 -9
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 441e3066e9a9fe24eec742f18497e8c0a604d10d
|
4
|
+
data.tar.gz: 24fc90490452f7839818e20c4b808807703bc28c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 33254815aa1c41bfb99d8466a206889f8d9cb3ac9bc1821b8b5cc467be15b9a9c593a82e71c97eec976026593a5ea1aa164ac33d4abf020477a18c36ce087d2e
|
7
|
+
data.tar.gz: 75d52e70b43ceba3551682241a6cda0f035791e18928b04e76490236246bfff40185e5796d42828a0560177b2c5bdf80efcfe919cdef6755fb5a894e2e318968
|
data/assert_value.gemspec
CHANGED
data/lib/assert_value.rb
CHANGED
@@ -5,10 +5,6 @@
|
|
5
5
|
# with .gemspec dependency on minitest
|
6
6
|
begin
|
7
7
|
require 'minitest/unit'
|
8
|
-
unless defined?(Minitest) and Minitest.const_defined?("VERSION") and Minitest::VERSION >= "5.0.0"
|
9
|
-
# older minitest versions can be combined with test/unit to support overridable command line options
|
10
|
-
require 'test/unit'
|
11
|
-
end
|
12
8
|
rescue LoadError
|
13
9
|
require 'test/unit'
|
14
10
|
end
|
metadata
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: assert_value
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
5
|
-
prerelease:
|
4
|
+
version: 1.3.1
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Pluron, Inc.
|
@@ -17,7 +16,7 @@ executables: []
|
|
17
16
|
extensions: []
|
18
17
|
extra_rdoc_files: []
|
19
18
|
files:
|
20
|
-
- .gitignore
|
19
|
+
- ".gitignore"
|
21
20
|
- Gemfile
|
22
21
|
- LICENSE
|
23
22
|
- README.md
|
@@ -35,27 +34,26 @@ files:
|
|
35
34
|
homepage: http://github.com/acunote/assert_value
|
36
35
|
licenses:
|
37
36
|
- MIT
|
37
|
+
metadata: {}
|
38
38
|
post_install_message:
|
39
39
|
rdoc_options: []
|
40
40
|
require_paths:
|
41
41
|
- lib
|
42
42
|
required_ruby_version: !ruby/object:Gem::Requirement
|
43
|
-
none: false
|
44
43
|
requirements:
|
45
|
-
- -
|
44
|
+
- - ">="
|
46
45
|
- !ruby/object:Gem::Version
|
47
46
|
version: '0'
|
48
47
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
48
|
requirements:
|
51
|
-
- -
|
49
|
+
- - ">="
|
52
50
|
- !ruby/object:Gem::Version
|
53
51
|
version: '0'
|
54
52
|
requirements: []
|
55
53
|
rubyforge_project:
|
56
|
-
rubygems_version:
|
54
|
+
rubygems_version: 2.2.2
|
57
55
|
signing_key:
|
58
|
-
specification_version:
|
56
|
+
specification_version: 4
|
59
57
|
summary: Assert that checks that two values (strings, expected and actual) are same
|
60
58
|
and which can magically replace expected value with the actual in case the new behavior
|
61
59
|
(and new actual value) is correct
|