public_activity 1.6.1 → 1.6.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 +4 -4
- data/README.md +6 -0
- data/lib/public_activity/orm/active_record/activity.rb +8 -2
- data/lib/public_activity/version.rb +1 -1
- data/test/test_helper.rb +5 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e4ac952b994db15150b6a1e7f221b05f41442f0c35d6bd21c90c5277fbe537cd
|
|
4
|
+
data.tar.gz: 3b3bd32fa1deeba2d30b0f500290e477b98b63156cc07af3c199e834549c4529
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 58e047472974959e02d2f35f78a5f8e2101c669f6bef0aa2a51f1138f9a0a525701720a079ee9020061b328144a3d4af82559535acd3a1c471d0901a47633f22
|
|
7
|
+
data.tar.gz: c9c5f76120c511e6b2a9ed551de5a50349813ca1ee851f91612f60a8a0e5fdc416032ea98dcd45273f5259a857d6b506772bc63bc41fff57401357b804d80cca
|
data/README.md
CHANGED
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
in Rails 3.0 - 5.0. Simply put: it records what has been changed or created and gives you the ability to present those
|
|
5
5
|
recorded activities to users - in a similar way to how GitHub does it.
|
|
6
6
|
|
|
7
|
+
## Sponsors
|
|
8
|
+
|
|
9
|
+
<p align="center">
|
|
10
|
+
<a style="max-width: 478x" href="https://getstream.io/try-the-api/?utm_source=public-activity&utm_medium=banner&utm_campaign=github"><img src="https://i.imgur.com/q4c8wVO.png"/>
|
|
11
|
+
</p>
|
|
12
|
+
|
|
7
13
|
## Rails 5
|
|
8
14
|
|
|
9
15
|
**As of 1.6.0 version, public_activity also supports Rails up to 5.2.**
|
|
@@ -27,8 +27,14 @@ module PublicActivity
|
|
|
27
27
|
end
|
|
28
28
|
|
|
29
29
|
# Serialize parameters Hash
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
begin
|
|
31
|
+
if table_exists?
|
|
32
|
+
serialize :parameters, Hash unless [:json, :jsonb, :hstore].include?(columns_hash['parameters'].type)
|
|
33
|
+
else
|
|
34
|
+
warn("[WARN] table #{name} doesn't exist. Skipping PublicActivity::Activity#parameters's serialization")
|
|
35
|
+
end
|
|
36
|
+
rescue ::ActiveRecord::NoDatabaseError => e
|
|
37
|
+
warn("[WARN] database doesn't exist. Skipping PublicActivity::Activity#parameters's serialization")
|
|
32
38
|
end
|
|
33
39
|
|
|
34
40
|
if ::ActiveRecord::VERSION::MAJOR < 4 || defined?(ProtectedAttributes)
|
data/test/test_helper.rb
CHANGED
|
@@ -132,7 +132,11 @@ when :mongo_mapper
|
|
|
132
132
|
end
|
|
133
133
|
|
|
134
134
|
class ViewSpec < MiniTest::Spec
|
|
135
|
-
|
|
135
|
+
if ActiveSupport.version >= Gem::Version.new('5.2.0')
|
|
136
|
+
prepend ActiveSupport::Testing::SetupAndTeardown
|
|
137
|
+
else
|
|
138
|
+
include ActiveSupport::Testing::SetupAndTeardown
|
|
139
|
+
end
|
|
136
140
|
include ActionView::TestCase::Behavior
|
|
137
141
|
end
|
|
138
142
|
MiniTest::Spec.register_spec_type(/Rendering$/, ViewSpec)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: public_activity
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Piotrek Okoński
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-
|
|
12
|
+
date: 2018-08-31 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: actionpack
|