action-store 1.1.1 → 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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/lib/action_store/engine.rb +0 -5
- data/lib/action_store/version.rb +1 -1
- metadata +2 -36
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2da571031e037998baaa189d6830f41e5ebd3e4f8b0bfee9e12c74c899b736c6
|
|
4
|
+
data.tar.gz: 6da3e3170932e1c68de160afda956d611c83b86a99e46cc74a8cbcc27eec7f4b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e515c93f0bfb9b56975e421637e3515c14dbc972287dc19021433c160314d53291204230aa3f124192668c4807382f27e96eacb4043e356ff73ae7d1c21f5fd
|
|
7
|
+
data.tar.gz: cac5707c25171d9369240c7b7e6c32f6fb78161cee0ec73393fb15f0bbac35f57a55a7b1a3b85f4d859ea000cca51074fd8709a4b1cbe8e41fc986ad85dc6d76
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
## ActionStore
|
|
2
2
|
|
|
3
|
-
[](https://badge.fury.io/rb/action-store) [](https://github.com/rails-engine/action-store/actions?query=workflow%3Abuild)
|
|
3
|
+
[](https://badge.fury.io/rb/action-store) [](https://github.com/rails-engine/action-store/actions?query=workflow%3Abuild)
|
|
4
4
|
|
|
5
5
|
Store different kinds of actions (Like, Follow, Star, Block, etc.) in a single table via ActiveRecord Polymorphic Associations.
|
|
6
6
|
|
data/lib/action_store/engine.rb
CHANGED
data/lib/action_store/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: action-store
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jason Lee
|
|
@@ -17,9 +17,6 @@ dependencies:
|
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '5.2'
|
|
20
|
-
- - "<"
|
|
21
|
-
- !ruby/object:Gem::Version
|
|
22
|
-
version: '7'
|
|
23
20
|
type: :runtime
|
|
24
21
|
prerelease: false
|
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -27,23 +24,6 @@ dependencies:
|
|
|
27
24
|
- - ">="
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
26
|
version: '5.2'
|
|
30
|
-
- - "<"
|
|
31
|
-
- !ruby/object:Gem::Version
|
|
32
|
-
version: '7'
|
|
33
|
-
- !ruby/object:Gem::Dependency
|
|
34
|
-
name: codecov
|
|
35
|
-
requirement: !ruby/object:Gem::Requirement
|
|
36
|
-
requirements:
|
|
37
|
-
- - ">="
|
|
38
|
-
- !ruby/object:Gem::Version
|
|
39
|
-
version: '0'
|
|
40
|
-
type: :development
|
|
41
|
-
prerelease: false
|
|
42
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
43
|
-
requirements:
|
|
44
|
-
- - ">="
|
|
45
|
-
- !ruby/object:Gem::Version
|
|
46
|
-
version: '0'
|
|
47
27
|
- !ruby/object:Gem::Dependency
|
|
48
28
|
name: factory_bot
|
|
49
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -72,20 +52,6 @@ dependencies:
|
|
|
72
52
|
- - ">="
|
|
73
53
|
- !ruby/object:Gem::Version
|
|
74
54
|
version: '0'
|
|
75
|
-
- !ruby/object:Gem::Dependency
|
|
76
|
-
name: simplecov
|
|
77
|
-
requirement: !ruby/object:Gem::Requirement
|
|
78
|
-
requirements:
|
|
79
|
-
- - ">="
|
|
80
|
-
- !ruby/object:Gem::Version
|
|
81
|
-
version: '0'
|
|
82
|
-
type: :development
|
|
83
|
-
prerelease: false
|
|
84
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
85
|
-
requirements:
|
|
86
|
-
- - ">="
|
|
87
|
-
- !ruby/object:Gem::Version
|
|
88
|
-
version: '0'
|
|
89
55
|
description: Store difference kind of actions (Like, Follow, Star, Block ...) in one
|
|
90
56
|
table via ActiveRecord Polymorphic Association.
|
|
91
57
|
email: huacnlee@gmail.com
|
|
@@ -127,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
127
93
|
- !ruby/object:Gem::Version
|
|
128
94
|
version: '0'
|
|
129
95
|
requirements: []
|
|
130
|
-
rubygems_version: 3.
|
|
96
|
+
rubygems_version: 3.4.19
|
|
131
97
|
signing_key:
|
|
132
98
|
specification_version: 4
|
|
133
99
|
summary: Store difference kind of actions (Like, Follow, Star, Block ...) in one table.
|