object_similarity 0.0.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/Gemfile +12 -0
- data/README.md +0 -0
- data/object_similarity.gemspec +22 -0
- metadata +47 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 5824ac6f614151b457b42bcd8388f011c4d5018e
|
|
4
|
+
data.tar.gz: 8103be5eaad7b60442e670a869785b8192ea18ce
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 3f74a0e0716c85fee4aa00851a915a08b7ae1f8bcf2c06adc2453f40af4f06f42b8f0205cde6e17654bd277ed81230c73cba6efe92ac55a5a617508b3130a647
|
|
7
|
+
data.tar.gz: 14904116c305df07043931522bb537bfd6252996afdc3b3976d3bc7858d81f97cc0d7db78a896c13905bfde823d11c96857b6116862056f1fc31486dc1a77e81
|
data/Gemfile
ADDED
data/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
lib = File.expand_path('../lib/', __FILE__)
|
|
2
|
+
$:.unshift lib unless $:.include?(lib)
|
|
3
|
+
|
|
4
|
+
Gem::Specification.new do |s|
|
|
5
|
+
s.name = "object_similarity"
|
|
6
|
+
s.version = '0.0.1'
|
|
7
|
+
s.required_ruby_version = ">= 1.9.1"
|
|
8
|
+
|
|
9
|
+
s.authors = "Brian Underwood"
|
|
10
|
+
s.email = 'public@brian-underwood.codes'
|
|
11
|
+
s.homepage = "https://github.com/cheerfulstoic/object_similarity/"
|
|
12
|
+
s.summary = "A ruby library to calculate similarity between ruby objects"
|
|
13
|
+
s.license = 'MIT'
|
|
14
|
+
s.description = <<-EOF
|
|
15
|
+
A ruby library to calculate similarity between ruby objects
|
|
16
|
+
EOF
|
|
17
|
+
|
|
18
|
+
s.require_path = 'lib'
|
|
19
|
+
s.files = Dir.glob("{bin,lib,config}/**/*") + %w(README.md Gemfile object_similarity.gemspec)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: object_similarity
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Brian Underwood
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-11-09 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: |
|
|
14
|
+
A ruby library to calculate similarity between ruby objects
|
|
15
|
+
email: public@brian-underwood.codes
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- Gemfile
|
|
21
|
+
- README.md
|
|
22
|
+
- object_similarity.gemspec
|
|
23
|
+
homepage: https://github.com/cheerfulstoic/object_similarity/
|
|
24
|
+
licenses:
|
|
25
|
+
- MIT
|
|
26
|
+
metadata: {}
|
|
27
|
+
post_install_message:
|
|
28
|
+
rdoc_options: []
|
|
29
|
+
require_paths:
|
|
30
|
+
- lib
|
|
31
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
32
|
+
requirements:
|
|
33
|
+
- - ">="
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: 1.9.1
|
|
36
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
requirements: []
|
|
42
|
+
rubyforge_project:
|
|
43
|
+
rubygems_version: 2.2.2
|
|
44
|
+
signing_key:
|
|
45
|
+
specification_version: 4
|
|
46
|
+
summary: A ruby library to calculate similarity between ruby objects
|
|
47
|
+
test_files: []
|