equatable 0.6.0 → 0.6.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 +4 -4
- data/CHANGELOG.md +6 -0
- data/equatable.gemspec +1 -0
- data/lib/equatable/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b49b54e2f3f46d8054e5f78db585c00419711702203e5a8821733250abd88a07
|
|
4
|
+
data.tar.gz: 22aac392c2600b53784af71dd0f0fc70e7b301e74085dfc21eb5da75bf3fb827
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c697d160703b147b12175e6ee897bbd4bf4794cabfe9260be00871e1bc6d4fa73ee086da23f5aee338f85b8d19b1148e15ce2f4d3dc184935dff6e628f4a9d67
|
|
7
|
+
data.tar.gz: de730eceff7e36f66afa6f7fd3a5c922e4874a92b8d16655e9b16cd5c5014bc312062e036356a7a7c8ba8003fc5b3a4eac63136a72fd4fafc9c28a737c1ff684
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Change log
|
|
2
2
|
|
|
3
|
+
## [v0.6.1] - 2019-06-26
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
* Add license key to gemspec
|
|
7
|
+
|
|
3
8
|
## [v0.6.0] - 2019-06-16
|
|
4
9
|
|
|
5
10
|
### Added
|
|
@@ -13,6 +18,7 @@
|
|
|
13
18
|
|
|
14
19
|
* Initial implementation and release
|
|
15
20
|
|
|
21
|
+
[v0.6.1]: https://github.com/piotrmurach/equatable/compare/v0.6.0...v0.6.1
|
|
16
22
|
[v0.6.0]: https://github.com/piotrmurach/equatable/compare/v0.5.0...v0.6.0
|
|
17
23
|
[v0.5.0]: https://github.com/piotrmurach/equatable/compare/v0.4.0...v0.5.0
|
|
18
24
|
[v0.4.0]: https://github.com/piotrmurach/equatable/compare/v0.3.0...v0.4.0
|
data/equatable.gemspec
CHANGED
|
@@ -10,6 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.summary = %q{Extends Ruby objects with equality comparison and inspection methods.}
|
|
11
11
|
spec.description = %q{Extends Ruby objects with equality comparison and inspection methods. By including this module, a class indicates that its instances have explicit general contracts for `hash`, `==` and `eql?` methods.}
|
|
12
12
|
spec.homepage = "https://github.com/piotrmurach/equatable"
|
|
13
|
+
spec.license = "MIT"
|
|
13
14
|
if spec.respond_to?(:metadata=)
|
|
14
15
|
spec.metadata = {
|
|
15
16
|
"allowed_push_host" => "https://rubygems.org",
|
data/lib/equatable/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: equatable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Piotr Murach
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-06-
|
|
11
|
+
date: 2019-06-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -78,7 +78,8 @@ files:
|
|
|
78
78
|
- tasks/coverage.rake
|
|
79
79
|
- tasks/spec.rake
|
|
80
80
|
homepage: https://github.com/piotrmurach/equatable
|
|
81
|
-
licenses:
|
|
81
|
+
licenses:
|
|
82
|
+
- MIT
|
|
82
83
|
metadata:
|
|
83
84
|
allowed_push_host: https://rubygems.org
|
|
84
85
|
bug_tracker_uri: https://github.com/piotrmurach/equatable/issues
|