action-store 1.1.2 → 1.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 394f0ac4dd31e9c98ae5052769ef935f67f8de6ab25401b34a529fd79fb5c7fd
4
- data.tar.gz: 2682434ea7b22e756d5e78e4f97afb1986b75fe15f128668f9ce863c9c862616
3
+ metadata.gz: 2da571031e037998baaa189d6830f41e5ebd3e4f8b0bfee9e12c74c899b736c6
4
+ data.tar.gz: 6da3e3170932e1c68de160afda956d611c83b86a99e46cc74a8cbcc27eec7f4b
5
5
  SHA512:
6
- metadata.gz: 06d674a641954289d95e8aa192608fa05ca9040a9a7eea1256c13b0b9499891a2486277b39371c73288fcc2f50922033a80016a22eeb2f7282978ff786f2ee2b
7
- data.tar.gz: c550135c83fa5ec9c71ae993f87c3b5f9344a6dcbe175448365eecbbaee1f38e490b808096a506ea7209b61a1ad1e4e297a94dd052db5234e7bcda1d58c2a583
6
+ metadata.gz: 4e515c93f0bfb9b56975e421637e3515c14dbc972287dc19021433c160314d53291204230aa3f124192668c4807382f27e96eacb4043e356ff73ae7d1c21f5fd
7
+ data.tar.gz: cac5707c25171d9369240c7b7e6c32f6fb78161cee0ec73393fb15f0bbac35f57a55a7b1a3b85f4d859ea000cca51074fd8709a4b1cbe8e41fc986ad85dc6d76
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ New release please vitit GitHub Releases page.
2
+
3
+ https://github.com/rails-engine/action-store/releases
4
+
1
5
  ## 1.1.1
2
6
 
3
7
  - Update Table column limit for fix MySQL max key length error. (#17)
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## ActionStore
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/action-store.svg)](https://badge.fury.io/rb/action-store) [![build](https://github.com/rails-engine/action-store/workflows/build/badge.svg)](https://github.com/rails-engine/action-store/actions?query=workflow%3Abuild) [![codecov.io](https://codecov.io/github/rails-engine/action-store/coverage.svg?branch=master)](https://codecov.io/github/rails-engine/action-store?branch=master)
3
+ [![Gem Version](https://badge.fury.io/rb/action-store.svg)](https://badge.fury.io/rb/action-store) [![build](https://github.com/rails-engine/action-store/workflows/build/badge.svg)](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
 
@@ -3,10 +3,5 @@
3
3
  module ActionStore
4
4
  class Engine < ::Rails::Engine
5
5
  isolate_namespace ActionStore
6
-
7
- initializer "action_store.init_action", after: :load_config_initializers do
8
- # Ensure eager_load Action model to init methods
9
- require "action"
10
- end
11
6
  end
12
7
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActionStore
4
- VERSION = "1.1.2"
4
+ VERSION = "1.1.3"
5
5
  end
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.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Lee
@@ -24,20 +24,6 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '5.2'
27
- - !ruby/object:Gem::Dependency
28
- name: codecov
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '0'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - ">="
39
- - !ruby/object:Gem::Version
40
- version: '0'
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: factory_bot
43
29
  requirement: !ruby/object:Gem::Requirement
@@ -66,20 +52,6 @@ dependencies:
66
52
  - - ">="
67
53
  - !ruby/object:Gem::Version
68
54
  version: '0'
69
- - !ruby/object:Gem::Dependency
70
- name: simplecov
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - ">="
74
- - !ruby/object:Gem::Version
75
- version: '0'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - ">="
81
- - !ruby/object:Gem::Version
82
- version: '0'
83
55
  description: Store difference kind of actions (Like, Follow, Star, Block ...) in one
84
56
  table via ActiveRecord Polymorphic Association.
85
57
  email: huacnlee@gmail.com
@@ -121,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
121
93
  - !ruby/object:Gem::Version
122
94
  version: '0'
123
95
  requirements: []
124
- rubygems_version: 3.2.3
96
+ rubygems_version: 3.4.19
125
97
  signing_key:
126
98
  specification_version: 4
127
99
  summary: Store difference kind of actions (Like, Follow, Star, Block ...) in one table.