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.
@@ -0,0 +1,7 @@
1
+ # 0.0.2
2
+
3
+ Doesn't prevent app from loading if no configuration exists for the current environment.
4
+
5
+ # 0.0.1
6
+
7
+ Boom! Initial Release.
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
+ ![Scout Rails Monitoring](http://dl.dropbox.com/u/468982/scout_rails_screenshot_gem.gif)
12
+
5
13
  ## Getting Started
6
14
 
7
15
  Install the gem:
@@ -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."
@@ -1,3 +1,3 @@
1
1
  module ScoutRails
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
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 = "http://scoutapp.com"
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.1
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-04-27 00:00:00.000000000 Z
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: http://scoutapp.com
48
+ homepage: https://github.com/scoutapp/scout_rails
48
49
  licenses: []
49
50
  post_install_message:
50
51
  rdoc_options: []