phcscriptcdnpro 5.1.6 → 5.1.7

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: 4d87bfc2561d9a3b7eb8cc0fbad7e23dfadfb9bd
4
- data.tar.gz: d2315891f7ca50d44f931942d5b4406860e2aa90
3
+ metadata.gz: 231b95d2cee7fb5fa56d23c6ef489b8539bed5e1
4
+ data.tar.gz: ca7714dd7e1dcf22e26800d62363ba259af08d0d
5
5
  SHA512:
6
- metadata.gz: 273fcdc856c892cfbef65f313e0a3ce1043e12910ce68a9998b83dfcb76e2f0dcde3bcaa04ac833a1d8ac089d3096e2803231b95f046a3bbc8434bcfa437ccdc
7
- data.tar.gz: 2ef8db004ad6dd666802df0500a7e11902e1cef1c67496042a9807511d9cda3f51308318029739d83d329c187e9f99adeabf0af34f0d73e0188568029b54c61f
6
+ metadata.gz: a7db60dceda02be6125fc9bb200335406ed2402a7f590641c169f6636a07761e52e03fb3b6fa5a85e96b723f481e6ada0c70589fc065c2de9ada1e94b232540b
7
+ data.tar.gz: 0c1b98c0e3c9de7e9cbb534ac2efb2e5aa30f3f9131ce2e980ca66c532552e9ac95bf8536736c018162dba19c56baa2b4dd1482233655111ade03e8deb3dc971
@@ -3,7 +3,7 @@ module Phcscriptcdnpro
3
3
 
4
4
  # Relationships
5
5
 
6
- # Listing Un-Nested
6
+ # Listing (None Nested)
7
7
  has_many :listings, class_name: 'Phcscriptcdnpro::Script::Listing'
8
8
 
9
9
  end
@@ -1,7 +1,9 @@
1
1
  module Phcscriptcdnpro
2
2
  class Script::Extension < ApplicationRecord
3
3
 
4
- # URL Un-Nested
4
+ # Relationships
5
+
6
+ # URL (None Nested)
5
7
  has_many :urls, class_name: 'Phcscriptcdnpro::Script::Url'
6
8
 
7
9
  end
@@ -3,7 +3,7 @@ module Phcscriptcdnpro
3
3
 
4
4
  # Relationships
5
5
 
6
- # Listing Un-Nested
6
+ # Listing (None Nested)
7
7
  has_many :listings, class_name: 'Phcscriptcdnpro::Script::Listing'
8
8
 
9
9
  end
@@ -3,16 +3,16 @@ module Phcscriptcdnpro
3
3
 
4
4
  # Relationships
5
5
 
6
- # URL Nested
7
- has_many :urls, class_name: 'Phcscriptcdnpro::Script::Url'
6
+ # Attach to URL (Nested)
7
+ belongs_to :url, class_name: 'Phcscriptcdnpro::Script::Url'
8
8
 
9
- # Attach to Author
9
+ # Attach to Author (None Nested)
10
10
  belongs_to :author, class_name: 'Phcscriptcdnpro::Script::Author'
11
11
 
12
- # Attach to Version
12
+ # Attach to Version (None Nested)
13
13
  belongs_to :version, class_name: 'Phcscriptcdnpro::Script::Version'
14
14
 
15
- # Attach to Licence
15
+ # Attach to Licence (None Nested)
16
16
  belongs_to :licence, class_name: 'Phcscriptcdnpro::Script::Licence'
17
17
 
18
18
  end
@@ -3,13 +3,13 @@ module Phcscriptcdnpro
3
3
 
4
4
  # Relationships
5
5
 
6
- # Attach to Listings
6
+ # Attach to Listings (Nested)
7
7
  belongs_to :listing, class_name: 'Phcscriptcdnpro::Script::Listing'
8
8
 
9
- # Attach to Version
9
+ # Attach to Version (None Nested)
10
10
  belongs_to :version, class_name: 'Phcscriptcdnpro::Script::Version'
11
11
 
12
- # Attach to Extensions
12
+ # Attach to Extension (None Nested)
13
13
  belongs_to :extension, class_name: 'Phcscriptcdnpro::Script::Extension'
14
14
 
15
15
  end
@@ -1,13 +1,13 @@
1
1
  module Phcscriptcdnpro
2
2
  class Script::Version < ApplicationRecord
3
3
 
4
- #Relationships
4
+ # Relationships
5
5
 
6
- # URL Un-Nested
7
- has_many :urls, class_name: 'Phcscriptcdnpro::Script::Url'
8
-
9
- # Listing Un-Nested
6
+ # Attach to Listing (None Nested)
10
7
  has_many :listings, class_name: 'Phcscriptcdnpro::Script::Listing'
11
8
 
9
+ # Attach to URL (None Nested)
10
+ has_many :urls, class_name: 'Phcscriptcdnpro::Script::Url'
11
+
12
12
  end
13
13
  end
@@ -1,3 +1,3 @@
1
1
  module Phcscriptcdnpro
2
- VERSION = "5.1.6"
2
+ VERSION = "5.1.7"
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.6
4
+ version: 5.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts