phcscriptcdnpro 3.0.0 → 3.0.1

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: ba28112a28f45f1dfe4a740ff74ca52d90f24575
4
- data.tar.gz: 21df3edd7c1e407009975b07f0b9e0a67130bf27
3
+ metadata.gz: 3065ef0ac835706b1343348cc5f0c50e1d9eb21c
4
+ data.tar.gz: fc94845978d76b2cefe7632c7e7744890c2829aa
5
5
  SHA512:
6
- metadata.gz: 2a6c778c8f915fa7b15398418f2ec8fe383a7de4b3a83a5e80cc48ebcbbc9f90cdf6cf05fa33e343b421403df447ceeb52f758bf932bcba4bcf90425fa27677a
7
- data.tar.gz: d269a257aa603d85e5ce41e4c50f25a66e7dd3e2a235527fb38d2bdaa6963fc14ee2e049db63a7c27e4b5eb5e6eb60e6831c45d2a53d7bfbf8ba4344201293e8
6
+ metadata.gz: 586d2ffc50a4bf4ee0a20f39d198e3cdf25070d88d96560caad00c15bddaf871ce0ee4e72089fc5d875a9f3bd0b66d5386a2e83464da80de2cf1319798111b96
7
+ data.tar.gz: 71588e635553f2e65c1c0494a57fdce0bbd46aad01c94431af2b87129eb42d5cafa48b8be3a16cfcfb961d2553672de1dc4a1d13eb168a2992a17960c4b81486
@@ -4,7 +4,7 @@ module Phcscriptcdnpro
4
4
  # Relationships
5
5
 
6
6
  # Attach to Listings
7
- belongs_to :listing, class_name: 'Phcscriptcdn::Script::Listing'
7
+ belongs_to :listing, class_name: 'Phcscriptcdnpro::Script::Listing'
8
8
 
9
9
  end
10
10
  end
@@ -2,7 +2,7 @@ module Phcscriptcdnpro
2
2
  class Script::Extension < ApplicationRecord
3
3
 
4
4
  # URL Un-Nested
5
- has_many :urls, class_name: 'Phcscriptcdn::Script::Url'
5
+ has_many :urls, class_name: 'Phcscriptcdnpro::Script::Url'
6
6
 
7
7
  end
8
8
  end
@@ -5,13 +5,13 @@ module Phcscriptcdnpro
5
5
 
6
6
  #has_many :informations, class_name: 'Phcscriptcdn::Script::Version'
7
7
  # URL Nested
8
- has_many :urls, class_name: 'Phcscriptcdn::Script::Url'
8
+ has_many :urls, class_name: 'Phcscriptcdnpro::Script::Url'
9
9
 
10
10
  # Author Nested
11
- has_many :authors, class_name: 'Phcscriptcdn::Script::Author'
11
+ has_many :authors, class_name: 'Phcscriptcdnpro::Script::Author'
12
12
 
13
13
  # Attach to Version
14
- belongs_to :version, class_name: 'Phcscriptcdn::Script::Version'
14
+ belongs_to :version, class_name: 'Phcscriptcdnpro::Script::Version'
15
15
 
16
16
  end
17
17
  end
@@ -4,13 +4,13 @@ module Phcscriptcdnpro
4
4
  # Relationships
5
5
 
6
6
  # Attach to Listings
7
- belongs_to :listing, class_name: 'Phcscriptcdn::Script::Listing'
7
+ belongs_to :listing, class_name: 'Phcscriptcdnpro::Script::Listing'
8
8
 
9
9
  # Attach to Version
10
- belongs_to :version, class_name: 'Phcscriptcdn::Script::Version'
10
+ belongs_to :version, class_name: 'Phcscriptcdnpro::Script::Version'
11
11
 
12
12
  # Attach to Extensions
13
- belongs_to :extension, class_name: 'Phcscriptcdn::Script::Extension'
13
+ belongs_to :extension, class_name: 'Phcscriptcdnpro::Script::Extension'
14
14
 
15
15
  end
16
16
  end
@@ -4,10 +4,10 @@ module Phcscriptcdnpro
4
4
  #Relationships
5
5
 
6
6
  # URL Un-Nested
7
- has_many :urls, class_name: 'Phcscriptcdn::Script::Url'
7
+ has_many :urls, class_name: 'Phcscriptcdnpro::Script::Url'
8
8
 
9
9
  # Listing Un-Nested
10
- has_many :listings, class_name: 'Phcscriptcdn::Script::Listing'
10
+ has_many :listings, class_name: 'Phcscriptcdnpro::Script::Listing'
11
11
 
12
12
  end
13
13
  end
data/config/routes.rb CHANGED
@@ -8,13 +8,13 @@ Phcscriptcdnpro::Engine.routes.draw do
8
8
  # Script CDN Listing System
9
9
  namespace :script do
10
10
  # Main Script Module
11
- resources :listings, class_name: 'Phcscriptcdn::Script::Listing' do
12
- resources :urls, class_name: 'Phcscriptcdn::Script::Url'
13
- resources :authors, class_name: 'Phcscriptcdn::Script::Author'
11
+ resources :listings, class_name: 'Phcscriptcdnpro::Script::Listing' do
12
+ resources :urls, class_name: 'Phcscriptcdnpro::Script::Url'
13
+ resources :authors, class_name: 'Phcscriptcdnpro::Script::Author'
14
14
  end
15
- resources :extensions, class_name: 'Phcscriptcdn::Script::Extension'
16
- resources :versions, class_name: 'Phcscriptcdn::Script::Version'
17
- resources :licences, class_name: 'Phcscriptcdn::Script::Licence'
15
+ resources :extensions, class_name: 'Phcscriptcdnpro::Script::Extension'
16
+ resources :versions, class_name: 'Phcscriptcdnpro::Script::Version'
17
+ resources :licences, class_name: 'Phcscriptcdnpro::Script::Licence'
18
18
  end
19
19
 
20
20
  # Application API
@@ -1,3 +1,3 @@
1
1
  module Phcscriptcdnpro
2
- VERSION = "3.0.0"
2
+ VERSION = "3.0.1"
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: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts