active_record-any_links 0.1.0 → 0.1.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/active_record-any_links.gemspec +5 -2
- data/lib/active_record/any_links/version.rb +1 -1
- metadata +8 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b51285bbbed409605d0bfbeb71f2c5c4f1aa8ab0
|
|
4
|
+
data.tar.gz: d2147afd17e4db60959299ca020d61c25fdc6585
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e724a6f745f96ec5ab3126a930b72328f0cd5368c9e00cb84e136abab3b02ab2a9f6be715bbf09074a7734a8f7953fd202d1dce82ce5f4060ffb3fe618f2aa92
|
|
7
|
+
data.tar.gz: 1657cf4d8fe4c571a300e9d15baaddebe8f5f0e42c87c33cbf1eb2b2bddd5eba8855d9efaf31a6497c124859406b2ab8114575719583e31ccf5efbff6e16eb73
|
|
@@ -9,8 +9,11 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Hagai Arzi"]
|
|
10
10
|
spec.email = ["Hagai.Arzi@Gmail.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{
|
|
13
|
-
spec.description = %q{
|
|
12
|
+
spec.summary = %q{Link objects of different models easily, using a single common connection table. }
|
|
13
|
+
spec.description = %q{Link objects of different models in a single common table named "any_links" using
|
|
14
|
+
has_many_to_many, has_many_to_one or has_one_to_many new methods.
|
|
15
|
+
There is no need for creating a new table for any connection type, nor buiding an
|
|
16
|
+
"has_many through" associations.}
|
|
14
17
|
spec.homepage = "https://github.com/Hagai-Arzi/active_record-any_links/tree/master/lib/active_record"
|
|
15
18
|
|
|
16
19
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_record-any_links
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hagai Arzi
|
|
@@ -80,8 +80,11 @@ dependencies:
|
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '4.2'
|
|
83
|
-
description:
|
|
84
|
-
|
|
83
|
+
description: |-
|
|
84
|
+
Link objects of different models in a single common table named "any_links" using
|
|
85
|
+
has_many_to_many, has_many_to_one or has_one_to_many new methods.
|
|
86
|
+
There is no need for creating a new table for any connection type, nor buiding an
|
|
87
|
+
"has_many through" associations.
|
|
85
88
|
email:
|
|
86
89
|
- Hagai.Arzi@Gmail.com
|
|
87
90
|
executables: []
|
|
@@ -123,6 +126,6 @@ rubyforge_project:
|
|
|
123
126
|
rubygems_version: 2.6.8
|
|
124
127
|
signing_key:
|
|
125
128
|
specification_version: 4
|
|
126
|
-
summary:
|
|
127
|
-
|
|
129
|
+
summary: Link objects of different models easily, using a single common connection
|
|
130
|
+
table.
|
|
128
131
|
test_files: []
|