user_actions_logger 0.1.2 → 0.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/README.md +2 -4
- data/lib/user_actions_logger.rb +0 -3
- data/user_actions_logger.gemspec +1 -1
- metadata +1 -2
- data/lib/user_actions_logger/railtie.rb +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 154c676706fe868722f152483b0de2bc89fe38078386bec82bd4fd12d1ed176b
|
4
|
+
data.tar.gz: a9f277393ee98d3ee847420382ee2ef4845641ffec8690f69991d1d18e1042e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3e7afb2a738693156ac837e0935a0daabd2741166ddd97f0f1907f32e3e95f401bbe7981da44cdcc6365819410eb14866000cb79c363d5baa6f21dca3208342
|
7
|
+
data.tar.gz: f8eb1c0d4f6908a76f7a6dc21f52d7d7abf7978806e0d9628dfc1be2e7169444a3f97296cbcc3559af7995dfcce15fe36b47a938a8c16f6e77576b4bc74e4f77
|
data/README.md
CHANGED
@@ -1,14 +1,12 @@
|
|
1
1
|
# UserActionsLogger
|
2
2
|
|
3
3
|
### Installation:
|
4
|
-
1. Add UserActionsLogger to you 'Gemfile'.
|
5
|
-
|
4
|
+
1. Add UserActionsLogger to you 'Gemfile'. <br />
|
6
5
|
gem 'user_actions_logger', '~> 0.1'
|
7
6
|
|
8
7
|
2. Add 'loggings' table to your database
|
9
8
|
|
10
|
-
|
11
|
-
|
9
|
+
rails generate migration CreateLoggings user:string object:string action:string module_name:string created_at:datetime updated_at:datetime <br />
|
12
10
|
bundle exec rake db:migrate
|
13
11
|
|
14
12
|
### Basic Usage:
|
data/lib/user_actions_logger.rb
CHANGED
data/user_actions_logger.gemspec
CHANGED
@@ -2,7 +2,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = 'user_actions_logger'
|
5
|
-
s.version = '0.1.
|
5
|
+
s.version = '0.1.3'
|
6
6
|
s.date = '2018-04-01'
|
7
7
|
s.summary = 'UserAsctionLogger - Simple gem for loggin user actions'
|
8
8
|
s.description = 'Logging user actions in loggings table if you use SQL. But you can use this gem whith no-sql db'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: user_actions_logger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yurich May
|
@@ -22,7 +22,6 @@ files:
|
|
22
22
|
- README.md
|
23
23
|
- lib/tasks/user_actions_logger.rake
|
24
24
|
- lib/user_actions_logger.rb
|
25
|
-
- lib/user_actions_logger/railtie.rb
|
26
25
|
- user_actions_logger.gemspec
|
27
26
|
homepage: https://github.com/AveYurich/user_actions_logger
|
28
27
|
licenses:
|