socialization 2.0.0 → 2.0.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
  SHA256:
3
- metadata.gz: 50ba5e062fb98e4b8b881e29701db48b7dad1fbfd01c97dd920362a4ff003160
4
- data.tar.gz: 95b61065f67ae9bea59bf50a5f899b7c3ab4626e93ff3e1a18f25681b59a12b9
3
+ metadata.gz: 22d8b3559cb4bc0d9138ea45753f7fab5f06ba44f1b583da221612c9c3a596c6
4
+ data.tar.gz: 14465566e6b73fd7f4fe8d815f09987e3f4468d7e98a250fdb74e1f0a1b63f08
5
5
  SHA512:
6
- metadata.gz: 0d9e0dc1c4c399bed13bd0bf86703768c9fa420b1d9f33fad85e49c2db9609031506e3fb1b4091ca87886ff6cbbbd52ee14ebfb883a03f12bf78b194560a121d
7
- data.tar.gz: 359c3b7154cca91d946f7072891c675ffde0929a3995ce04b51231e1df532a0fd8f0bb879730556d04d2d72ef17242f54a18043133b324e8c0a4abbda0e2fbf9
6
+ metadata.gz: a3f1d7f31abb85b30943294d1b270eeca7f190ba4317e379c0f7fd4c8756b94d59a0204553d8462e781fdb6f331f448e3e565febe4c7099d32845fe9cc6c0741
7
+ data.tar.gz: 80ca7caf02ab9062200b1d521fcf7e8f463aa25097a988c2cea0f0f64f732f6943855043340c1b8a54dab80cc1c491be0ca95c125aff6707758483e6260ff41a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.0.1 (February 18, 2022)
4
+
5
+ * Added support for namespaced models (thanks @marciotoze, @twrk, @mensfeld)
6
+
3
7
  ## 2.0.0 (February 18, 2022)
4
8
 
5
9
  * Dropped support for old Rails versions. Updated CI.
data/README.md CHANGED
@@ -9,6 +9,7 @@ The Like feature works just like a Facebook Like. For example, John likes Pulp F
9
9
  The Mention feature was written with Facebook mentions in mind. For example, John mentions Jane in a comment. Typically, Jane would be highlighted in the comment user interface and possibly notified that John mentioned her. This Facebook feature is occasionally called Tagging, although tagging is generally something [entirely different](http://en.wikipedia.org/wiki/Tag_(metadata).
10
10
 
11
11
  ![Specs](https://github.com/cmer/socialization/actions/workflows/specs.yml/badge.svg)
12
+ [![Gem Version](https://badge.fury.io/rb/socialization.svg)](https://badge.fury.io/rb/socialization)
12
13
 
13
14
  ## Installation
14
15
 
@@ -9,12 +9,12 @@ module Socialization
9
9
  belongs_to :followable, :polymorphic => true
10
10
 
11
11
  scope :followed_by, lambda { |follower| where(
12
- :follower_type => follower.class.table_name.classify,
12
+ :follower_type => follower.class.name.classify,
13
13
  :follower_id => follower.id)
14
14
  }
15
15
 
16
16
  scope :following, lambda { |followable| where(
17
- :followable_type => followable.class.table_name.classify,
17
+ :followable_type => followable.class.name.classify,
18
18
  :followable_id => followable.id)
19
19
  }
20
20
 
@@ -54,7 +54,7 @@ module Socialization
54
54
  def followers_relation(followable, klass, opts = {})
55
55
  rel = klass.where(klass.primary_key =>
56
56
  self.select(:follower_id).
57
- where(:follower_type => klass.table_name.classify).
57
+ where(:follower_type => klass.name.classify).
58
58
  where(:followable_type => followable.class.to_s).
59
59
  where(:followable_id => followable.id)
60
60
  )
@@ -75,7 +75,7 @@ module Socialization
75
75
  def followables_relation(follower, klass, opts = {})
76
76
  rel = klass.where(klass.primary_key =>
77
77
  self.select(:followable_id).
78
- where(:followable_type => klass.table_name.classify).
78
+ where(:followable_type => klass.name.classify).
79
79
  where(:follower_type => follower.class.to_s).
80
80
  where(:follower_id => follower.id)
81
81
  )
@@ -9,12 +9,12 @@ module Socialization
9
9
  belongs_to :likeable, :polymorphic => true
10
10
 
11
11
  scope :liked_by, lambda { |liker| where(
12
- :liker_type => liker.class.table_name.classify,
12
+ :liker_type => liker.class.name.classify,
13
13
  :liker_id => liker.id)
14
14
  }
15
15
 
16
16
  scope :liking, lambda { |likeable| where(
17
- :likeable_type => likeable.class.table_name.classify,
17
+ :likeable_type => likeable.class.name.classify,
18
18
  :likeable_id => likeable.id)
19
19
  }
20
20
 
@@ -54,7 +54,7 @@ module Socialization
54
54
  def likers_relation(likeable, klass, opts = {})
55
55
  rel = klass.where(klass.primary_key =>
56
56
  self.select(:liker_id).
57
- where(:liker_type => klass.table_name.classify).
57
+ where(:liker_type => klass.name.classify).
58
58
  where(:likeable_type => likeable.class.to_s).
59
59
  where(:likeable_id => likeable.id)
60
60
  )
@@ -75,7 +75,7 @@ module Socialization
75
75
  def likeables_relation(liker, klass, opts = {})
76
76
  rel = klass.where(klass.primary_key =>
77
77
  self.select(:likeable_id).
78
- where(:likeable_type => klass.table_name.classify).
78
+ where(:likeable_type => klass.name.classify).
79
79
  where(:liker_type => liker.class.to_s).
80
80
  where(:liker_id => liker.id)
81
81
  )
@@ -9,12 +9,12 @@ module Socialization
9
9
  belongs_to :mentionable, :polymorphic => true
10
10
 
11
11
  scope :mentioned_by, lambda { |mentioner| where(
12
- :mentioner_type => mentioner.class.table_name.classify,
12
+ :mentioner_type => mentioner.class.name.classify,
13
13
  :mentioner_id => mentioner.id)
14
14
  }
15
15
 
16
16
  scope :mentioning, lambda { |mentionable| where(
17
- :mentionable_type => mentionable.class.table_name.classify,
17
+ :mentionable_type => mentionable.class.name.classify,
18
18
  :mentionable_id => mentionable.id)
19
19
  }
20
20
 
@@ -54,7 +54,7 @@ module Socialization
54
54
  def mentioners_relation(mentionable, klass, opts = {})
55
55
  rel = klass.where(klass.primary_key =>
56
56
  self.select(:mentioner_id).
57
- where(:mentioner_type => klass.table_name.classify).
57
+ where(:mentioner_type => klass.name.classify).
58
58
  where(:mentionable_type => mentionable.class.to_s).
59
59
  where(:mentionable_id => mentionable.id)
60
60
  )
@@ -75,7 +75,7 @@ module Socialization
75
75
  def mentionables_relation(mentioner, klass, opts = {})
76
76
  rel = klass.where(klass.primary_key =>
77
77
  self.select(:mentionable_id).
78
- where(:mentionable_type => klass.table_name.classify).
78
+ where(:mentionable_type => klass.name.classify).
79
79
  where(:mentioner_type => mentioner.class.to_s).
80
80
  where(:mentioner_id => mentioner.id)
81
81
  )
@@ -1,3 +1,3 @@
1
1
  module Socialization
2
- VERSION = "2.0.0"
2
+ VERSION = "2.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: socialization
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carl Mercier