tail 0.1.4 → 0.1.5
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 +18 -3
- data/lib/tail/version.rb +1 -1
- metadata +15 -16
- data/test/dummy/tmp/pids/server.pid +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fff1e3b158536f1c2480b0b858d36517e69a142c
|
|
4
|
+
data.tar.gz: b1040779a7100daedbccc14b0362c14c1f25a604
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be252a5cf920b88efc131937b11349bd9a4dd7846cedffc200cdb5ea5f90d42322e19f17bc08d06b5dc985a61f7d75c17bd6180962b13da10d3ebc78dc537a43
|
|
7
|
+
data.tar.gz: 98db61b90fd6acb3a8f9c3af8d51047bf5067c7acabe40dedd31d4e20d26bbe18d10e23c841fbc3d8f92a56c7c5cb3010e24fdb71124c36c294765da2a4b61d3
|
data/README.md
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
|
+
[](http://badge.fury.io/rb/tail)
|
|
2
|
+
[](https://codeclimate.com/github/k2m30/tail)
|
|
3
|
+
|
|
1
4
|
##Description
|
|
2
5
|
|
|
3
|
-
|
|
4
|
-
|
|
6
|
+
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.
|
|
7
|
+
|
|
8
|
+
Also you can highlight any particular string you are looking for.
|
|
9
|
+
|
|
10
|
+

|
|
5
11
|
|
|
6
|
-
Also it highlights with red any log stings which include query you've entered.
|
|
7
12
|
|
|
8
13
|
##Installation
|
|
9
14
|
|
|
@@ -21,6 +26,16 @@ Of course, you can mount it `at: "/whatevername"` you like.
|
|
|
21
26
|
|
|
22
27
|
If you use Devise for authentication, gem will use it also.
|
|
23
28
|
|
|
29
|
+
##Requirements
|
|
30
|
+
|
|
31
|
+
Any *nix (including Mac OS) system.
|
|
32
|
+
|
|
33
|
+
Ruby 1.9.3+
|
|
34
|
+
|
|
35
|
+
Rails 4.0+
|
|
36
|
+
|
|
37
|
+
No other gems required. No jQuery or any JS frameworks required.
|
|
38
|
+
|
|
24
39
|
##License
|
|
25
40
|
|
|
26
41
|
This gem uses MIT-LICENSE. Fork it or create pull request. Any contribution is appreciated.
|
data/lib/tail/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tail
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mikhail Chuprynski
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-04-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 4.0
|
|
19
|
+
version: '4.0'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - "
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 4.0
|
|
27
|
-
description:
|
|
28
|
-
Rails application. If something goes wrong
|
|
29
|
-
anymore. Now you have normal scroll and search
|
|
30
|
-
`vim`, `mcedit` - name it.
|
|
26
|
+
version: '4.0'
|
|
27
|
+
description: In order to have a quick access to your .log files this gem provides
|
|
28
|
+
*nix `tail` command functionality to your Rails application. If something goes wrong
|
|
29
|
+
you don't have to ssh to your server anymore. Now you have normal scroll and search
|
|
30
|
+
in browser instead of `nano`, `eamacs`, `vim`, `mcedit` - name it.
|
|
31
31
|
email:
|
|
32
32
|
- mikhail.chuprynski@gmail.com
|
|
33
33
|
executables: []
|
|
@@ -118,7 +118,6 @@ files:
|
|
|
118
118
|
- test/dummy/tmp/cache/assets/development/sprockets/cc59bec20fd57a7cd0577b2b803e8ace
|
|
119
119
|
- test/dummy/tmp/cache/assets/development/sprockets/d640a694f3b9326ab9011e7522ad6a04
|
|
120
120
|
- test/dummy/tmp/cache/assets/development/sprockets/f95171e35ea035a46c8cff6b1c8aee7a
|
|
121
|
-
- test/dummy/tmp/pids/server.pid
|
|
122
121
|
- test/fixtures/tail/tails.yml
|
|
123
122
|
- test/helpers/tail/tails_helper_test.rb
|
|
124
123
|
- test/integration/navigation_test.rb
|
|
@@ -128,7 +127,8 @@ files:
|
|
|
128
127
|
homepage: http://github.com/k2m30/tail
|
|
129
128
|
licenses: []
|
|
130
129
|
metadata: {}
|
|
131
|
-
post_install_message:
|
|
130
|
+
post_install_message: 'Don''t forget to mount gem (routes.rb) like this: mount Tail::Engine,
|
|
131
|
+
at: "/tail" '
|
|
132
132
|
rdoc_options: []
|
|
133
133
|
require_paths:
|
|
134
134
|
- lib
|
|
@@ -136,7 +136,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
136
136
|
requirements:
|
|
137
137
|
- - ">="
|
|
138
138
|
- !ruby/object:Gem::Version
|
|
139
|
-
version:
|
|
139
|
+
version: 1.9.3
|
|
140
140
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
141
141
|
requirements:
|
|
142
142
|
- - ">="
|
|
@@ -144,10 +144,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
144
144
|
version: '0'
|
|
145
145
|
requirements: []
|
|
146
146
|
rubyforge_project:
|
|
147
|
-
rubygems_version: 2.2.
|
|
147
|
+
rubygems_version: 2.2.2
|
|
148
148
|
signing_key:
|
|
149
149
|
specification_version: 4
|
|
150
|
-
summary: Tail command via
|
|
150
|
+
summary: Tail command for your .log files via browser.
|
|
151
151
|
test_files:
|
|
152
152
|
- test/controllers/tail/tails_controller_test.rb
|
|
153
153
|
- test/dummy/app/assets/javascripts/application.js
|
|
@@ -208,7 +208,6 @@ test_files:
|
|
|
208
208
|
- test/dummy/tmp/cache/assets/development/sprockets/cc59bec20fd57a7cd0577b2b803e8ace
|
|
209
209
|
- test/dummy/tmp/cache/assets/development/sprockets/d640a694f3b9326ab9011e7522ad6a04
|
|
210
210
|
- test/dummy/tmp/cache/assets/development/sprockets/f95171e35ea035a46c8cff6b1c8aee7a
|
|
211
|
-
- test/dummy/tmp/pids/server.pid
|
|
212
211
|
- test/fixtures/tail/tails.yml
|
|
213
212
|
- test/helpers/tail/tails_helper_test.rb
|
|
214
213
|
- test/integration/navigation_test.rb
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
51813
|