Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kirillshevch/logs
Mountable Rails Engine for viewing paginated logs from a browser
https://github.com/kirillshevch/logs
browser engine logs rails
Last synced: 18 days ago
JSON representation
Mountable Rails Engine for viewing paginated logs from a browser
- Host: GitHub
- URL: https://github.com/kirillshevch/logs
- Owner: kirillshevch
- License: mit
- Created: 2017-11-15T14:41:27.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-21T02:28:08.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T10:08:06.706Z (about 1 month ago)
- Topics: browser, engine, logs, rails
- Language: Ruby
- Homepage:
- Size: 659 KB
- Stars: 75
- Watchers: 4
- Forks: 6
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE
Awesome Lists containing this project
README
# Logs
[![Gem Version](https://badge.fury.io/rb/logs.svg)](https://badge.fury.io/rb/logs)
[![CircleCI](https://circleci.com/gh/kirillshevch/logs.svg?style=shield&circle-token=5e904bb791d31a5f8bd06b0cf29746f69aeb6caa)](https://circleci.com/gh/kirillshevch/logs)
[![Maintainability](https://api.codeclimate.com/v1/badges/c121e93550b2e6e4d2ae/maintainability)](https://codeclimate.com/github/kirillshevch/logs/maintainability)Mountable Rails Engine for viewing paginated logs from a browser
## Installation
Add this line to your application's Gemfile:```ruby
gem 'logs'
```And then execute:
```bash
$ bundle
```Mount Engine:
`config/routes.rb`
```ruby
Rails.application.routes.draw do
mount Logs::Engine => '/logs'
end
```Look up on `/logs` route.
![Logs](https://github.com/kirillshevch/logs/blob/master/demo.jpg "Logs")
## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).