Project

tail

0.02
No commit activity in last 3 years
No release in over 3 years
In order to have a quick access to your .log files this gem provides *nix `tail` command functionality to your Rails application. If something goes wrong you don't have to ssh to your server anymore. Now you have normal scroll and search in browser instead of `nano`, `eamacs`, `vim`, `mcedit` - name it.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

>= 4.0
 Project Readme

Gem Version Code Climate

##Description

Tail command for your .log files via browser. In order to have a quick access to your .log files this gem provides *nix tail command functionality to your Rails application. If something goes wrong you don't have to ssh to your server anymore. Now you have normal scroll and search in browser instead of nano, eamacs, vim, mcedit - name it.

Also you can highlight any particular string you are looking for.

How it works

##Installation

Just include it into your Gemfile

gem 'tail'

run bundle install and mount it at your config/routes.rb like this:

mount Tail::Engine, at: "/tail"

After this, you will see all your .log files available at /tail path.

Of course, you can mount it at: "/whatevername" you like.

If you use Devise for authentication, gem will use it also.

##Requirements

Any *nix (including Mac OS) system.

Ruby 1.9.3+

Rails 3.2+

No other gems required. No jQuery or any JS frameworks required.

##License

This gem uses MIT-LICENSE. Fork it or create pull request. Any contribution is appreciated.