gltail 0.1.3 → 0.1.4

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.
data.tar.gz.sig CHANGED
Binary file
@@ -1,3 +1,7 @@
1
+ == 0.1.4 / 2008-04-29
2
+
3
+ * Only trap signals on non Windows platforms (Chris Gahan)
4
+
1
5
  == 0.1.3 / 2008-03-28
2
6
 
3
7
  * Render strings as number + text to reuse OpenGL call-lists in more cases.
@@ -94,14 +94,16 @@ end
94
94
 
95
95
  ######## TRAP Interrupts and exit cleanly ########
96
96
 
97
- trap("HUP") { exit }
98
- trap("INT") { exit }
99
- trap("QUIT") { exit }
100
- trap("ABRT") { exit }
101
- trap("KILL") { exit }
102
- trap("TERM") { exit }
103
- #trap("USR1") { $VRB >= 1 ? $VRB = 0 : $VRB += 1; puts "verbose toggled" }
104
- trap("USR2") { $DBG >= 2 ? $DBG = 0 : $DBG += 1; puts "debug level toggled" }
97
+ if RUBY_PLATFORM.split('-',2).last != "mswin32"
98
+ trap("HUP") { exit }
99
+ trap("INT") { exit }
100
+ trap("QUIT") { exit }
101
+ trap("ABRT") { exit }
102
+ trap("KILL") { exit }
103
+ trap("TERM") { exit }
104
+ #trap("USR1") { $VRB >= 1 ? $VRB = 0 : $VRB += 1; puts "verbose toggled" }
105
+ trap("USR2") { $DBG >= 2 ? $DBG = 0 : $DBG += 1; puts "debug level toggled" }
106
+ end
105
107
 
106
108
  config = GlTail::Config.parse_yaml(file)
107
109
 
@@ -5,7 +5,7 @@
5
5
  #
6
6
 
7
7
  module GlTail
8
- VERSION = '0.1.3'
8
+ VERSION = '0.1.4'
9
9
  end
10
10
 
11
11
  begin
File without changes
File without changes
metadata CHANGED
@@ -1,8 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gltail
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
5
- platform: ""
4
+ version: 0.1.4
5
+ platform: ruby
6
6
  authors:
7
7
  - Erlend Simonsen
8
8
  autorequire:
@@ -29,7 +29,7 @@ cert_chain:
29
29
  /UfNqVgtDGy57Xw9DBNRbUm92FVILwpudQs3SX1z2Gik08RrKReELwpRciY=
30
30
  -----END CERTIFICATE-----
31
31
 
32
- date: 2008-03-28 00:00:00 +01:00
32
+ date: 2008-04-29 00:00:00 +02:00
33
33
  default_executable:
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
@@ -57,7 +57,7 @@ dependencies:
57
57
  requirements:
58
58
  - - ">="
59
59
  - !ruby/object:Gem::Version
60
- version: 1.5.0
60
+ version: 1.5.1
61
61
  version:
62
62
  description: "== FEATURES: * Real-Time OpenGL view * Multiple logfiles on multiple servers * Configurable layout * Multiple logfile parsers (Apache Combined, Rails, IIS, Postfix/spamd/clamd, Nginx, Squid, PostgreSQL, PureFTPD, MySQL, TShark, qmail/vmpop3d) * Custom events * Show rate, total or average * If you can 'tail' it, you can visualize it * Written in Ruby using net-ssh & libopengl-ruby * Free! == RUNNING: gl_tail --help gl_tail --new gl_tail.yaml gl_tail You can press 'f' while running to toggle the attempted frames per second. Or 'b' to change default blob type, and space to toggle bouncing. == REQUIREMENTS: * rubygems 0.9.4 * ruby-opengl 0.40.1 * net-ssh 1.1.2 * opengl/ruby development packages (ruby1.8-dev libgl1-mesa-dev libglu1-mesa-dev libglut3-dev)"
63
63
  email: mr@fudgie.org
@@ -133,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
133
133
  requirements: []
134
134
 
135
135
  rubyforge_project: gltail
136
- rubygems_version: 0.9.5
136
+ rubygems_version: 1.1.1
137
137
  signing_key:
138
138
  specification_version: 2
139
139
  summary: View real-time data and statistics from any logfile on any server with SSH, in an intuitive and entertaining way.
metadata.gz.sig CHANGED
Binary file