ar_sync 1.1.0 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +4 -3
- data/.gitignore +2 -0
- data/Gemfile +1 -0
- data/ar_sync.gemspec +1 -1
- data/bin/console +2 -2
- data/core/ArSyncModel.d.ts +10 -12
- data/core/ArSyncModel.js +7 -5
- data/core/ArSyncStore.d.ts +11 -3
- data/core/ArSyncStore.js +112 -112
- data/core/hooks.d.ts +1 -0
- data/core/hooks.js +5 -4
- data/gemfiles/Gemfile-rails-6 +4 -3
- data/gemfiles/{Gemfile-rails-7 → Gemfile-rails-7-0} +4 -3
- data/gemfiles/Gemfile-rails-7-1 +10 -0
- data/lib/ar_sync/class_methods.rb +1 -5
- data/lib/ar_sync/core.rb +2 -6
- data/lib/ar_sync/instance_methods.rb +16 -1
- data/lib/ar_sync/rails.rb +14 -17
- data/lib/ar_sync/version.rb +1 -1
- data/src/core/ArSyncModel.ts +9 -8
- data/src/core/ArSyncStore.ts +128 -121
- data/src/core/hooks.ts +6 -5
- metadata +5 -19
- data/Gemfile.lock +0 -54
data/Gemfile.lock
DELETED
@@ -1,54 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
ar_sync (1.1.0)
|
5
|
-
activerecord
|
6
|
-
ar_serializer
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
activemodel (7.0.2.3)
|
12
|
-
activesupport (= 7.0.2.3)
|
13
|
-
activerecord (7.0.2.3)
|
14
|
-
activemodel (= 7.0.2.3)
|
15
|
-
activesupport (= 7.0.2.3)
|
16
|
-
activerecord-import (1.4.0)
|
17
|
-
activerecord (>= 4.2)
|
18
|
-
activesupport (7.0.2.3)
|
19
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
20
|
-
i18n (>= 1.6, < 2)
|
21
|
-
minitest (>= 5.1)
|
22
|
-
tzinfo (~> 2.0)
|
23
|
-
ar_serializer (1.2.0)
|
24
|
-
activerecord
|
25
|
-
top_n_loader
|
26
|
-
coderay (1.1.3)
|
27
|
-
concurrent-ruby (1.1.10)
|
28
|
-
i18n (1.10.0)
|
29
|
-
concurrent-ruby (~> 1.0)
|
30
|
-
method_source (1.0.0)
|
31
|
-
minitest (5.15.0)
|
32
|
-
pry (0.14.1)
|
33
|
-
coderay (~> 1.1)
|
34
|
-
method_source (~> 1.0)
|
35
|
-
rake (13.0.6)
|
36
|
-
sqlite3 (1.4.2)
|
37
|
-
top_n_loader (1.0.2)
|
38
|
-
activerecord
|
39
|
-
tzinfo (2.0.4)
|
40
|
-
concurrent-ruby (~> 1.0)
|
41
|
-
|
42
|
-
PLATFORMS
|
43
|
-
ruby
|
44
|
-
|
45
|
-
DEPENDENCIES
|
46
|
-
activerecord-import
|
47
|
-
ar_serializer
|
48
|
-
ar_sync!
|
49
|
-
pry
|
50
|
-
rake
|
51
|
-
sqlite3
|
52
|
-
|
53
|
-
BUNDLED WITH
|
54
|
-
2.1.2
|