ar_sync 1.1.2 → 1.1.3

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: '096573e72fb5d4dc465e79c9bf8b39617fb423d7d779534f4ce30768dda2b5b1'
4
- data.tar.gz: c590f23a76420db7e056733ca895e56991cdcca8cfbd9908a503dc5ce57ab2f7
3
+ metadata.gz: a611909077a01072217464f8a041ffd6e60ddb8dd28189960ea17724d7b9718d
4
+ data.tar.gz: 5575312d885bd19112f96f4fd25bb0e6c2e54aaf36c6208e4e74798422a6f2f1
5
5
  SHA512:
6
- metadata.gz: 47d42249688cfef025fd2b9ea927d81962a786eded059a694ac5d069e7a0b0a48ca9bcc0d59a8d198bc4bb701cd86d4b98acc5c2c3de5b3018ac78f4b9487566
7
- data.tar.gz: 88e61169ef8968905d8e9f341108f2c926ac23436ce30ad5e8f2ca7872a6e4e2644f24ff44769c5561589ba1954367325001675c2014b838053ccb6b1848ace9
6
+ metadata.gz: 65545944b292de31d1648cfc4937fa08093e30a4f34d0e4a245ca46fb26a24bad5f38d5c9b21da0fab65fde27a2868f6f597b0c850479ad77b94cd351e9c1f00
7
+ data.tar.gz: 7b44c1e4b2bcbb1c6bef33cc265d5d81e8baaf6acf4fed8b05087555a61823e60055d6e16ee2249dbc173b76e28b4cd878b0171ea88a7d9888de73c61cf8e105
@@ -5,11 +5,11 @@ jobs:
5
5
  strategy:
6
6
  fail-fast: false
7
7
  matrix:
8
- ruby: [ '3.1', '3.2', '3.3' ]
8
+ ruby: [ '3.2', '3.3', '3.4' ]
9
9
  gemfiles:
10
10
  - gemfiles/Gemfile-rails-6
11
- - gemfiles/Gemfile-rails-7-0
12
- - gemfiles/Gemfile-rails-7-1
11
+ - gemfiles/Gemfile-rails-7
12
+ - gemfiles/Gemfile-rails-8
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
15
  - uses: actions/checkout@v4
data/Gemfile CHANGED
@@ -4,5 +4,5 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
4
4
 
5
5
  # Specify your gem's dependencies in ar_sync.gemspec
6
6
  gemspec
7
- gem 'sqlite3', '~> 1.4'
7
+ gem 'sqlite3'
8
8
  gem 'ar_serializer'
@@ -5,6 +5,11 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
5
5
  # Specify your gem's dependencies in ar_sync.gemspec
6
6
  gemspec path: '..'
7
7
 
8
+ gem 'bigdecimal'
9
+ gem 'base64'
10
+ gem 'mutex_m'
11
+ gem 'logger'
12
+ gem 'concurrent-ruby', '1.3.4'
8
13
  gem 'sqlite3', '~> 1.4'
9
14
  gem 'activerecord', '~> 6.0'
10
15
  gem 'ar_serializer', github: 'tompng/ar_serializer'
@@ -6,5 +6,5 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
6
6
  gemspec path: '..'
7
7
 
8
8
  gem 'sqlite3', '~> 1.4'
9
- gem 'activerecord', '~> 7.0.0'
9
+ gem 'activerecord', '~> 7.0'
10
10
  gem 'ar_serializer', github: 'tompng/ar_serializer'
@@ -5,6 +5,6 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
5
5
  # Specify your gem's dependencies in ar_sync.gemspec
6
6
  gemspec path: '..'
7
7
 
8
- gem 'sqlite3', '~> 1.4'
9
- gem 'activerecord', '~> 7.1.0'
8
+ gem 'sqlite3'
9
+ gem 'activerecord', '~> 8.0'
10
10
  gem 'ar_serializer', github: 'tompng/ar_serializer'
@@ -1,4 +1,3 @@
1
- require 'ostruct'
2
1
  module ArSync
3
2
  config_keys = %i[
4
3
  current_user_method
data/lib/ar_sync/rails.rb CHANGED
@@ -116,7 +116,8 @@ module ArSync
116
116
  end
117
117
 
118
118
  def log_internal_exception(exception)
119
- ActiveSupport::Deprecation.silence do
119
+ deprecator = ::Rails.version >= Gem::Version.new('7.1.0') ? ::Rails.application.deprecators : ActiveSupport::Deprecation
120
+ deprecator.silence do
120
121
  logger.fatal ' '
121
122
  logger.fatal "#{exception.class} (#{exception.message}):"
122
123
  log_internal_exception_trace exception.annoted_source_code if exception.respond_to?(:annoted_source_code)
@@ -1,3 +1,3 @@
1
1
  module ArSync
2
- VERSION = '1.1.2'
2
+ VERSION = '1.1.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ar_sync
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - tompng
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-07-29 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: activerecord
@@ -114,8 +113,8 @@ files:
114
113
  - core/hooks.d.ts
115
114
  - core/hooks.js
116
115
  - gemfiles/Gemfile-rails-6
117
- - gemfiles/Gemfile-rails-7-0
118
- - gemfiles/Gemfile-rails-7-1
116
+ - gemfiles/Gemfile-rails-7
117
+ - gemfiles/Gemfile-rails-8
119
118
  - index.d.ts
120
119
  - index.js
121
120
  - lib/ar_sync.rb
@@ -147,7 +146,6 @@ homepage: https://github.com/tompng/ar_sync
147
146
  licenses:
148
147
  - MIT
149
148
  metadata: {}
150
- post_install_message:
151
149
  rdoc_options: []
152
150
  require_paths:
153
151
  - lib
@@ -162,8 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
162
160
  - !ruby/object:Gem::Version
163
161
  version: '0'
164
162
  requirements: []
165
- rubygems_version: 3.5.9
166
- signing_key:
163
+ rubygems_version: 3.7.1
167
164
  specification_version: 4
168
165
  summary: ActiveRecord - JavaScript Sync
169
166
  test_files: []