https://github.com/pengfeidong/logs_page_view
Mountable Rails Engine for displaying, tail and download logs from a browser
https://github.com/pengfeidong/logs_page_view
browser dowload logs rails ruby tail view
Last synced: about 2 months ago
JSON representation
Mountable Rails Engine for displaying, tail and download logs from a browser
- Host: GitHub
- URL: https://github.com/pengfeidong/logs_page_view
- Owner: pengfeidong
- License: mit
- Created: 2022-05-09T22:31:58.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-13T16:08:40.000Z (about 4 years ago)
- Last Synced: 2025-10-07T22:41:09.139Z (8 months ago)
- Topics: browser, dowload, logs, rails, ruby, tail, view
- Language: Ruby
- Homepage: https://rubygems.org/gems/logs_page_view
- Size: 1.12 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE
Awesome Lists containing this project
README
# Logs_page_view
[](https://badge.fury.io/rb/logs_page_view)
[](https://circleci.com/gh/pengfeidong/logs_page_view/tree/master)
[](https://codeclimate.com/github/pengfeidong/logs_page_view/maintainability)
Mountable Rails Engine for displaying, tail and download logs from a browser
This Gem is a fork [kirillshevch/logs](https://github.com/kirillshevch/logs).
New features:
- Add the new action for TAIL and DOWNLOAD log file.
- Use bootstrap like front-end.
- Optimise use RAM for load log file.
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'logs_page_view'
```
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.
## Demo
### Index page

### Download log file

### Tail log file page

## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).