beaver 1.4.1 → 1.4.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 59b5cde80bdb96a54a47391839e44e5df313920d
4
- data.tar.gz: 5f34d0b376cf7ebe821a7d451485f92ce6854630
3
+ metadata.gz: fb2c99e7f351ae1fad7d7ed54c7a90e2a6c404bb
4
+ data.tar.gz: 2dedcbbd6ddd4b61acb8dbae8a2595244cc78f7b
5
5
  SHA512:
6
- metadata.gz: 975399a18858fe522da3d58ec943b3f001b138f94222a5c4a430b81d5785085da35a2e41628c1db7a07424563a9ddf88cea4f3d049b70b5f218162c92a1c2bb9
7
- data.tar.gz: 76c6e06afdb6a79c89b50dcdd0ca8a9fbe380b7f38c95b5acdd6a253bbacf6886c86afcb4d2d2416e0b184635070afe1c5bb7502e27f65578a78287a1296a3f2
6
+ metadata.gz: 1c32310fa28a730a6408d1d32d8a1c297d565e0da9ca4d10073a43d5b5ab7107ad77b036d0ea96f4f6bdf1d6be2f734d59dea4af41334e32578e2a72dbc6c410
7
+ data.tar.gz: 91b2a7f6154797ba2619cab21ee15fa5b64b5c6d064d440ad039bd2abd29d5b792981caba11647816ebea87c74093dbb8298dd13994c28d4cd66e866c7fa3d34
@@ -4,11 +4,11 @@ module Beaver
4
4
  class Rails < Request
5
5
  REGEX_MATCH = /^Started [A-Z]+/ # :nodoc:
6
6
  REGEX_METHOD = /^Started ([A-Z]+)/ # :nodoc:
7
- REGEX_METHOD_OVERRIDE = /"_method"=>"([A-Z]+)"/i # :nodoc:
7
+ REGEX_METHOD_OVERRIDE = /"_method"=>"([A-Za-z]+)"/ # :nodoc:
8
8
  REGEX_CONTROLLER = /Processing by (\w+Controller)#/ # :nodoc:
9
9
  REGEX_ACTION = /Processing by \w+Controller#(\w+) as/ # :nodoc:
10
10
  REGEX_COMPLETED = /Completed (\d+)/ # :nodoc:
11
- REGEX_PATH = /^Started \w{3,4} "([^"]+)"/ # :nodoc:
11
+ REGEX_PATH = /^Started [A-Z]+ "([^"]+)"/ # :nodoc:
12
12
  REGEX_PARAMS_STR = / Parameters: (\{.+\})$/ # :nodoc:
13
13
  REGEX_IP = /" for ([a-zA-Z0-9:.]+) at / # :nodoc:
14
14
  REGEX_FORMAT = /Processing by .+ as (\w+)$/ # :nodoc:
@@ -1,4 +1,4 @@
1
1
  module Beaver
2
- MAJOR_VERSION, MINOR_VERSION, TINY_VERSION, PRE_VERSION = 1, 4, 1, nil # :nodoc:
2
+ MAJOR_VERSION, MINOR_VERSION, TINY_VERSION, PRE_VERSION = 1, 4, 2, nil # :nodoc:
3
3
  VERSION = [MAJOR_VERSION, MINOR_VERSION, TINY_VERSION, PRE_VERSION].compact.join '.' # :nodoc:
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaver
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jordan Hollinger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-28 00:00:00.000000000 Z
11
+ date: 2014-02-26 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: A simple DSL and command-line tool for discovering what people are up
14
14
  to in your Rails app