phcpresspro 4.1.1 → 4.1.2

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: b93072d89b0e3cc36387897509f4148c49942e17
4
- data.tar.gz: a735c704c281f978e3dcf3947129c55991344afe
3
+ metadata.gz: 97da2d424b0585a9081081ebdaf958307b4667cb
4
+ data.tar.gz: 113d23cf3fa8c1ba0978cd4143e3bd14330d1dc2
5
5
  SHA512:
6
- metadata.gz: d3e2045eedd20a70fb0596b8146597efed0634af1603a36799b736bc3aa2d007c0262c774631450e1e5cbf8563fe4f03b91d36b6fbe703a6a69caadcf89495ac
7
- data.tar.gz: 402f9dd41240c1a3b2d1fc2169d5171e56819b24763e1baea983af9c2ac991a25ee1d1cae847a0727896f4886861bf21509bd764663361722f2bf51240023df5
6
+ metadata.gz: 540c58caa1579dd022dda6ef56638642da8d04c326d0edd28eb347aebf0ec89608838c44c73ef4079a46c03dae6957d93026cb1d31f64422dda852ff0952bfea
7
+ data.tar.gz: 84bd87c68a4164fccc0f2a5ac4466031353d0a08916d23578d37380a1c3af697c125cd1ea224c661fe96a6d607d04c661663775f6e282a662f05cde338f870cb
@@ -5,8 +5,8 @@ module Phcpresspro
5
5
  mount_uploader :pstimage, Phcpresspro::PstimageUploader
6
6
 
7
7
  # Relationships
8
- has_many :connections, class_name: 'Modules::Connection'
9
- has_many :categories, class_name: 'Modules::Category', :through => :connections
8
+ has_many :connections, class_name: 'Phcpresspro::Modules::Connection'
9
+ has_many :categories, class_name: 'Phcpresspro::Modules::Category', :through => :connections
10
10
 
11
11
  end
12
12
  end
@@ -2,8 +2,8 @@ module Phcpresspro
2
2
  class Modules::Category < ApplicationRecord
3
3
 
4
4
  # Relationships
5
- has_many :connections, class_name: 'Modules::Connection'
6
- has_many :posts, class_name: 'Modules::Category', :through => :connections
5
+ has_many :connections, class_name: 'Phcpresspro::Modules::Connection'
6
+ has_many :posts, class_name: 'Phcpresspro::Modules::Category', :through => :connections
7
7
 
8
8
  end
9
9
  end
@@ -2,8 +2,8 @@ module Phcpresspro
2
2
  class Modules::Connection < ApplicationRecord
3
3
 
4
4
  # Relationships
5
- belongs_to :post, class_name: 'Articles::Post'
6
- belongs_to :category, class_name: 'Modules::Category'
5
+ belongs_to :post, class_name: 'Phcpresspro::Articles::Post'
6
+ belongs_to :category, class_name: 'Phcpresspro::Modules::Category'
7
7
 
8
8
  end
9
9
  end
@@ -1,3 +1,3 @@
1
1
  module Phcpresspro
2
- VERSION = "4.1.1"
2
+ VERSION = "4.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcpresspro
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.1
4
+ version: 4.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts