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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5d991efbc26c4de04ea6203b73356fdb35806afd
4
- data.tar.gz: cb1a9f0466c18907fd4ff35fb5a3264310279ea4
3
+ metadata.gz: b51285bbbed409605d0bfbeb71f2c5c4f1aa8ab0
4
+ data.tar.gz: d2147afd17e4db60959299ca020d61c25fdc6585
5
5
  SHA512:
6
- metadata.gz: bf656d93c9a5cda2cc9e8996df81a93fa41e7193c6427a739b32f2c9a7db1b13f22fb92bb60b4fdf7021877c9ef069f684594af76fb673f344d90bf44ba45c83
7
- data.tar.gz: f47fcedc79318c8700c5952bc3fa0b1d78306a2f2184e35a2d947ba37b1af78e2685e19c3a6a67fe194bb3d62df8deb72e806e802cd5477f50415058cbcc1d3d
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{Enable link objects of different models in a single table using only a single statement.}
13
- spec.description = %q{Enable link objects of different models in a single table using has_many_to_many, has_one_to_many or has_many_to_one methods.}
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|
@@ -1,5 +1,5 @@
1
1
  module ActiveRecord
2
2
  module AnyLinks
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
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.0
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: Enable link objects of different models in a single table using has_many_to_many,
84
- has_one_to_many or has_many_to_one methods.
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: Enable link objects of different models in a single table using only a single
127
- statement.
129
+ summary: Link objects of different models easily, using a single common connection
130
+ table.
128
131
  test_files: []