scout 5.6.1 → 5.6.2.pre

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.
@@ -1,3 +1,7 @@
1
+ # 5.6.2
2
+
3
+ * More forgiving regex to extract the code class when streaming.
4
+
1
5
  # 5.6.1
2
6
 
3
7
  * send role names exactly as the user entered - makes it easier to debug role name issues
@@ -51,7 +51,7 @@ module Scout
51
51
  end
52
52
 
53
53
  def extract_code_class(code)
54
- match = /class\s\b(\w*)\s+?<\s+Scout::Plugin/.match(code)
54
+ match = /class\s\b(\w*)\s*?<\s*Scout::Plugin/.match(code)
55
55
 
56
56
  if match
57
57
  return match[1]
@@ -1,3 +1,3 @@
1
1
  module Scout
2
- VERSION = "5.6.1"
2
+ VERSION = "5.6.2.pre"
3
3
  end
metadata CHANGED
@@ -1,40 +1,39 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: scout
3
- version: !ruby/object:Gem::Version
4
- version: 5.6.1
3
+ version: !ruby/object:Gem::Version
4
+ version: 5.6.2.pre
5
+ prerelease: 6
5
6
  platform: ruby
6
- authors:
7
+ authors:
7
8
  - Andre Lewis
8
9
  - Derek Haynes
9
10
  - James Edward Gray II
10
11
  autorequire:
11
12
  bindir: bin
12
13
  cert_chain: []
13
-
14
- date: 2013-03-04 00:00:00 -08:00
15
- default_executable:
16
- dependencies:
17
- - !ruby/object:Gem::Dependency
14
+ date: 2013-03-14 00:00:00.000000000 Z
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
18
17
  name: elif
18
+ requirement: &2153028480 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ! '>='
22
+ - !ruby/object:Gem::Version
23
+ version: '0'
19
24
  type: :runtime
20
- version_requirement:
21
- version_requirements: !ruby/object:Gem::Requirement
22
- requirements:
23
- - - ">="
24
- - !ruby/object:Gem::Version
25
- version: "0"
26
- version:
27
- description: |
28
- The scout gem reports metrics to scoutapp.com, an easy-to-use hosted server monitoring service.
25
+ prerelease: false
26
+ version_requirements: *2153028480
27
+ description: ! 'The scout gem reports metrics to scoutapp.com, an easy-to-use hosted
28
+ server monitoring service.
29
29
 
30
+ '
30
31
  email: support@scoutapp.com
31
- executables:
32
+ executables:
32
33
  - scout
33
34
  extensions: []
34
-
35
35
  extra_rdoc_files: []
36
-
37
- files:
36
+ files:
38
37
  - .gitignore
39
38
  - CHANGELOG.markdown
40
39
  - Gemfile
@@ -219,34 +218,32 @@ files:
219
218
  - vendor/signature/spec/signature_spec.rb
220
219
  - vendor/signature/spec/spec_helper.rb
221
220
  - vendor/util/lib/core_extensions.rb
222
- has_rdoc: true
223
221
  homepage: http://scoutapp.com
224
222
  licenses: []
225
-
226
223
  post_install_message:
227
224
  rdoc_options: []
228
-
229
- require_paths:
225
+ require_paths:
230
226
  - lib
231
- required_ruby_version: !ruby/object:Gem::Requirement
232
- requirements:
233
- - - ">="
234
- - !ruby/object:Gem::Version
235
- version: "0"
236
- version:
237
- required_rubygems_version: !ruby/object:Gem::Requirement
238
- requirements:
239
- - - ">="
240
- - !ruby/object:Gem::Version
241
- version: "0"
242
- version:
227
+ required_ruby_version: !ruby/object:Gem::Requirement
228
+ none: false
229
+ requirements:
230
+ - - ! '>='
231
+ - !ruby/object:Gem::Version
232
+ version: '0'
233
+ required_rubygems_version: !ruby/object:Gem::Requirement
234
+ none: false
235
+ requirements:
236
+ - - ! '>'
237
+ - !ruby/object:Gem::Version
238
+ version: 1.3.1
243
239
  requirements: []
244
-
245
240
  rubyforge_project: scout
246
- rubygems_version: 1.3.5
241
+ rubygems_version: 1.8.10
247
242
  signing_key:
248
243
  specification_version: 3
249
- summary: Scout is an easy-to-use hosted server monitoring service. The scout Ruby gem reports metrics to our service. The agent runs plugins, configured via the Scout web interface, to monitor a server.
250
- test_files:
244
+ summary: Scout is an easy-to-use hosted server monitoring service. The scout Ruby
245
+ gem reports metrics to our service. The agent runs plugins, configured via the Scout
246
+ web interface, to monitor a server.
247
+ test_files:
251
248
  - test/plugins/disk_usage.rb
252
249
  - test/scout_test.rb