scout_rails 0.0.1 → 0.0.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.
- data/CHANGELOG.markdown +7 -0
- data/README.markdown +8 -0
- data/lib/scout_rails/config.rb +1 -1
- data/lib/scout_rails/version.rb +1 -1
- data/scout_rails.gemspec +1 -1
- metadata +4 -3
data/CHANGELOG.markdown
ADDED
data/README.markdown
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
A Ruby gem for detailed Rails application performance analysis. Metrics are reported to [Scout](https://scoutapp.com), a hosted server and application monitoring service. For general server monitoring, see our [server monitoring agent](https://github.com/highgroove/scout-client).
|
|
4
4
|
|
|
5
|
+
## Invite-Only BETA
|
|
6
|
+
|
|
7
|
+
Rails Monitoring is only available to existing Scout customers. [Contact us](mailto:support@scoutapp.com) if you'd like to be in our BETA group.
|
|
8
|
+
|
|
9
|
+
## Screenshot
|
|
10
|
+
|
|
11
|
+

|
|
12
|
+
|
|
5
13
|
## Getting Started
|
|
6
14
|
|
|
7
15
|
Install the gem:
|
data/lib/scout_rails/config.rb
CHANGED
|
@@ -22,7 +22,7 @@ module ScoutRails
|
|
|
22
22
|
ScoutRails::Agent.instance.logger.warn "No config file found at [#{config_file}]."
|
|
23
23
|
@settings = {}
|
|
24
24
|
else
|
|
25
|
-
@settings = YAML.load(ERB.new(File.read(config_file)).result(binding))[ScoutRails::Agent.instance.environment.env]
|
|
25
|
+
@settings = YAML.load(ERB.new(File.read(config_file)).result(binding))[ScoutRails::Agent.instance.environment.env] || {}
|
|
26
26
|
end
|
|
27
27
|
rescue Exception => e
|
|
28
28
|
ScoutRails::Agent.instance.logger.warn "Unable to load the config file."
|
data/lib/scout_rails/version.rb
CHANGED
data/scout_rails.gemspec
CHANGED
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
|
7
7
|
s.version = ScoutRails::VERSION
|
|
8
8
|
s.authors = ["Derek Haynes",'Andre Lewis']
|
|
9
9
|
s.email = ["support@scoutapp.com"]
|
|
10
|
-
s.homepage = "
|
|
10
|
+
s.homepage = "https://github.com/scoutapp/scout_rails"
|
|
11
11
|
s.summary = "Rails application performance monitoring"
|
|
12
12
|
s.description = "Monitors a Ruby on Rails application and reports detailed metrics on performance to Scout, a hosted monitoring service."
|
|
13
13
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: scout_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2012-
|
|
13
|
+
date: 2012-05-09 00:00:00.000000000 Z
|
|
14
14
|
dependencies: []
|
|
15
15
|
description: Monitors a Ruby on Rails application and reports detailed metrics on
|
|
16
16
|
performance to Scout, a hosted monitoring service.
|
|
@@ -22,6 +22,7 @@ extra_rdoc_files: []
|
|
|
22
22
|
files:
|
|
23
23
|
- .DS_Store
|
|
24
24
|
- .gitignore
|
|
25
|
+
- CHANGELOG.markdown
|
|
25
26
|
- Gemfile
|
|
26
27
|
- README.markdown
|
|
27
28
|
- Rakefile
|
|
@@ -44,7 +45,7 @@ files:
|
|
|
44
45
|
- lib/scout_rails/tracer.rb
|
|
45
46
|
- lib/scout_rails/version.rb
|
|
46
47
|
- scout_rails.gemspec
|
|
47
|
-
homepage:
|
|
48
|
+
homepage: https://github.com/scoutapp/scout_rails
|
|
48
49
|
licenses: []
|
|
49
50
|
post_install_message:
|
|
50
51
|
rdoc_options: []
|