socialization 2.0.1 → 2.0.2

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: 22d8b3559cb4bc0d9138ea45753f7fab5f06ba44f1b583da221612c9c3a596c6
4
- data.tar.gz: 14465566e6b73fd7f4fe8d815f09987e3f4468d7e98a250fdb74e1f0a1b63f08
3
+ metadata.gz: 1ee82eab3ad3e0bd520446f3dd60d441d269403928fe8795d55dd7aabb61f2a0
4
+ data.tar.gz: 804dc944638a2069b875bf7df144feec37e8b544303d4812de6ddb4fb85964f4
5
5
  SHA512:
6
- metadata.gz: a3f1d7f31abb85b30943294d1b270eeca7f190ba4317e379c0f7fd4c8756b94d59a0204553d8462e781fdb6f331f448e3e565febe4c7099d32845fe9cc6c0741
7
- data.tar.gz: 80ca7caf02ab9062200b1d521fcf7e8f463aa25097a988c2cea0f0f64f732f6943855043340c1b8a54dab80cc1c491be0ca95c125aff6707758483e6260ff41a
6
+ metadata.gz: e4bbf85e699b15b834faf97693cd773ba8f7da0fdc3b2b14c437e7e76399183ee9cce4e71cb59d7100a4a51c8467a40ac25c60aa0549d8702590e29bfb926e44
7
+ data.tar.gz: 1f177dfb54f701acf1383e84e6e11ba8fe789d153261a10ccace510eec3f32c255e3813cf710910add578e28226f4f3b2b4fb4c3396362483f17ffd08c4e1831
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.0.2 (August 12, 2024)
4
+
5
+ * Bug fix
6
+
3
7
  ## 2.0.1 (February 18, 2022)
4
8
 
5
9
  * Added support for namespaced models (thanks @marciotoze, @twrk, @mensfeld)
@@ -1,6 +1,8 @@
1
1
  require 'rails/generators'
2
2
  require 'rails/generators/migration'
3
3
 
4
+ # require 'rails/version'
5
+
4
6
  STORES = %w(active_record redis)
5
7
 
6
8
  class SocializationGenerator < Rails::Generators::Base
@@ -9,7 +11,7 @@ class SocializationGenerator < Rails::Generators::Base
9
11
  class_option :store, :type => :string, :default => 'active_record', :description => "Type of datastore"
10
12
 
11
13
  def self.next_migration_number(dirname)
12
- if ActiveRecord::Base.timestamped_migrations
14
+ if ActiveRecord::Base.try(:timestamped_migrations) || ActiveRecord.try(:timestamped_migrations)
13
15
  Time.now.utc.strftime("%Y%m%d%H%M%S")
14
16
  else
15
17
  "%.3d" % (current_migration_number(dirname) + 1)
@@ -35,4 +37,4 @@ class SocializationGenerator < Rails::Generators::Base
35
37
  migration_template "#{options[:store]}/migration_mentions.rb", 'db/migrate/create_mentions.rb'
36
38
  end
37
39
  end
38
- end
40
+ end
@@ -1,4 +1,4 @@
1
- class CreateFollows < ActiveRecord::Migration
1
+ class CreateFollows < ActiveRecord::Migration[6.0]
2
2
  def change
3
3
  create_table :follows do |t|
4
4
  t.string :follower_type
@@ -1,4 +1,4 @@
1
- class CreateLikes < ActiveRecord::Migration
1
+ class CreateLikes < ActiveRecord::Migration[6.0]
2
2
  def change
3
3
  create_table :likes do |t|
4
4
  t.string :liker_type
@@ -1,4 +1,4 @@
1
- class CreateMentions < ActiveRecord::Migration
1
+ class CreateMentions < ActiveRecord::Migration[6.0]
2
2
  def change
3
3
  create_table :mentions do |t|
4
4
  t.string :mentioner_type
@@ -1,3 +1,3 @@
1
1
  module Socialization
2
- VERSION = "2.0.1"
2
+ VERSION = "2.0.2"
3
3
  end
@@ -1,9 +1,7 @@
1
1
  require 'mock_redis' if $MOCK_REDIS
2
2
  require 'redis' unless $MOCK_REDIS
3
3
 
4
- silence_warnings do
5
- Redis = MockRedis if $MOCK_REDIS # Magic!
6
- end
4
+ Redis = MockRedis if $MOCK_REDIS # Magic!
7
5
 
8
6
  def use_redis_store
9
7
  Socialization.follow_model = Socialization::RedisStores::Follow
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: socialization
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carl Mercier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-18 00:00:00.000000000 Z
11
+ date: 2024-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord