phcscriptcdnpro 5.1.4 → 5.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4c29b3e477bf6a3b80ce55b49570d2143123f828
4
- data.tar.gz: 1804b62e061a5746f3d1b731f40fce30c38e2823
3
+ metadata.gz: 132f1dd41bd55f02fd11955704a1573d6a7ff3c9
4
+ data.tar.gz: 5f2061fbf09edec52f7c89115c785890f9abd5a7
5
5
  SHA512:
6
- metadata.gz: 21e3161104e10ba28f79a51526573f1634e72ec3db16c9a5544b443991966eff5cf82b2112b7848b5accefd69c4dbbc7a4bbc6573c1cfb2dc3fcec9c81d33ce8
7
- data.tar.gz: c251aaee29d7063d5e72cd9e419e9eb41273eb925bcb1cd2b9b0b4ba3b771c898cc8b45fad66ae2d8db2a0b624dc42652643865f363b64317aef10d09cc887e3
6
+ metadata.gz: e335d8bb58c9f1931e06f7ae99d237f068bbc2133224e8b26d6a63dc554ab4daa9320e9abf60116dc9b82b87a4ce28181bde7023d35b08a6ab89e467adaa3b8d
7
+ data.tar.gz: 671c5c3522d1948cdfc6e82ef3bc2c3581746baf0ac244641899af6c5189c972e042ef45f9540bc0e6d1f8faa136462f73e921eb47a6a53a1ee509f0591866c9
@@ -3,8 +3,8 @@ module Phcscriptcdnpro
3
3
 
4
4
  # Relationships
5
5
 
6
- # Attach to Listings
7
- belongs_to :listing, class_name: 'Phcscriptcdnpro::Script::Listing'
6
+ # Listing Un-Nested
7
+ has_many :listings, class_name: 'Phcscriptcdnpro::Script::Listing'
8
8
 
9
9
  end
10
10
  end
@@ -1,5 +1,10 @@
1
1
  module Phcscriptcdnpro
2
2
  class Script::Licence < ApplicationRecord
3
3
 
4
+ # Relationships
5
+
6
+ # Listing Un-Nested
7
+ has_many :listings, class_name: 'Phcscriptcdnpro::Script::Listing'
8
+
4
9
  end
5
10
  end
@@ -6,11 +6,14 @@ module Phcscriptcdnpro
6
6
  # URL Nested
7
7
  has_many :urls, class_name: 'Phcscriptcdnpro::Script::Url'
8
8
 
9
- # Author Nested
10
- has_many :authors, class_name: 'Phcscriptcdnpro::Script::Author'
9
+ # Attach to Author
10
+ belongs_to :authors, class_name: 'Phcscriptcdnpro::Script::Author'
11
11
 
12
12
  # Attach to Version
13
13
  belongs_to :version, class_name: 'Phcscriptcdnpro::Script::Version'
14
14
 
15
+ # Attach to Licence
16
+ belongs_to :licence, class_name: 'Phcscriptcdnpro::Script::Licence'
17
+
15
18
  end
16
19
  end
@@ -1,3 +1,3 @@
1
1
  module Phcscriptcdnpro
2
- VERSION = "5.1.4"
2
+ VERSION = "5.1.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcscriptcdnpro
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.4
4
+ version: 5.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts