README.md in effective_logging-1.11.5 vs README.md in effective_logging-2.0.0
- old
+ new
@@ -1,11 +1,9 @@
# Effective Logging
Automatically log all sent emails, user logins, and page views. This also will log custom events from Ruby and JavaScript.
-A Rails3 / Rails4 engine to completely handle logging of events.
-
Logs are stored in a single database table. A Log (one logged event) can have many children Logs, nested to any depth.
Provides a ruby one-liner to log a message, status, user, associated object and any number of additional details.
Works great for single fire-and-forget events and long running tasks.
@@ -292,19 +290,13 @@
Creating child logs via JavaScript is not yet supported.
## Admin Screen
-To use the Admin screen, please also install the [effective_datatables](https://github.com/code-and-effect/effective_datatables/) gem:
+Visit:
```ruby
-gem 'effective_datatables'
-```
-
-Then you should be able to visit:
-
-```ruby
link_to 'Logs', effective_logging.admin_logs_path # /admin/logs
```
But you may need to add the permission (using CanCan):
@@ -339,24 +331,12 @@
```ruby
EffectiveLogsDatatable.new(for: @user.id)
EffectiveLogsDatatable.new(for: [1, 2, 3]) # Users with ID 1, 2 and 3
```
-
## License
MIT License. Copyright [Code and Effect Inc.](http://www.codeandeffect.com/)
-
-## Testing
-
-The test suite for this gem is unfortunately not yet complete.
-
-Run tests by:
-
-```ruby
-rake spec
-```
-
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)