almaz-revelation 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/.gitignore +2 -1
  2. data/VERSION +1 -0
  3. data/lib/almaz.rb +1 -1
  4. metadata +3 -2
data/.gitignore CHANGED
@@ -1,4 +1,5 @@
1
+ .DS_Store
1
2
  dump.rdb
2
3
  pkg
3
4
  almaz-*.gem
4
- almaz.gemspec
5
+ almaz-revelation.gemspec
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.5
@@ -36,7 +36,7 @@ class Almaz
36
36
  Rack::Request.public_instance_methods(false).each do |request_method|
37
37
  captured[request_method] = request.send(request_method.to_sym) if Almaz.config[:capture_keys].include?(request_method.to_sym)
38
38
  end
39
- captured.merge!(:time => Time.now.to_s)
39
+ captured.merge!(:time => Time.now.to_s, :user_agent => request.env["HTTP_USER_AGENT"])
40
40
  captured
41
41
  end
42
42
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 4
9
- version: 0.0.4
8
+ - 5
9
+ version: 0.0.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - James Pozdena
@@ -81,6 +81,7 @@ files:
81
81
  - MIT-LICENSE
82
82
  - README.textile
83
83
  - Rakefile
84
+ - VERSION
84
85
  - lib/almaz.rb
85
86
  - spec/almaz_spec.rb
86
87
  - spec/spec_helper.rb