Skip to content

Commit

Permalink
setting up 3.2.0 as main dev branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Guymon committed Jun 15, 2011
2 parents 09fc7cc + c265ab0 commit 9dd122e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
v3.1.0
* Experimental support for aggregating data from short-running
processes using NewRelic::Agent.load_data and
NewRelic::Agent.save_data
* Support for aggregating data from short-running
processes to reduce reporting overhead
* Numerous bug fixes
* Increased unit test coverage

v3.0.1
* Updated Real User Monitoring to reduce javascript size and improve
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require 'rake/testtask'

GEM_NAME = "newrelic_rpm"
GEM_VERSION = NewRelic::VERSION::STRING
AUTHORS = "Bill Kayser", "Justin George"
AUTHORS = "Bill Kayser", "Justin George", "Jon Guymon"
EMAIL = "support@newrelic.com"
HOMEPAGE = "http://www.github.com/newrelic/rpm"
SUMMARY = "New Relic Ruby Agent"
Expand Down
13 changes: 6 additions & 7 deletions newrelic_rpm.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Bill Kayser", "Justin George", "Jon Guymon"]
s.date = %q{2011-06-10}
s.date = %q{2011-06-15}
s.description = %q{New Relic is a performance management system, developed by New Relic,
Inc (http://www.newrelic.com). New Relic provides you with deep
information about the performance of your web application as it runs
Expand Down Expand Up @@ -92,6 +92,7 @@ http://github.com/newrelic/rpm/
"lib/new_relic/control.rb",
"lib/new_relic/control/class_methods.rb",
"lib/new_relic/control/configuration.rb",
"lib/new_relic/control/frameworks.rb",
"lib/new_relic/control/frameworks/external.rb",
"lib/new_relic/control/frameworks/merb.rb",
"lib/new_relic/control/frameworks/rails.rb",
Expand Down Expand Up @@ -171,16 +172,19 @@ http://github.com/newrelic/rpm/
"test/new_relic/agent/transaction_sample_builder_test.rb",
"test/new_relic/agent/transaction_sampler_test.rb",
"test/new_relic/agent/worker_loop_test.rb",
"test/new_relic/agent_test.rb",
"test/new_relic/collection_helper_test.rb",
"test/new_relic/command/deployments_test.rb",
"test/new_relic/control/class_methods_test.rb",
"test/new_relic/control/configuration_test.rb",
"test/new_relic/control/logging_methods_test.rb",
"test/new_relic/control_test.rb",
"test/new_relic/data_serialization_test.rb",
"test/new_relic/local_environment_test.rb",
"test/new_relic/metric_data_test.rb",
"test/new_relic/metric_spec_test.rb",
"test/new_relic/rack/all_test.rb",
"test/new_relic/rack/browser_monitoring_test.rb",
"test/new_relic/rack/developer_mode_test.rb",
"test/new_relic/stats_test.rb",
"test/new_relic/transaction_analysis/segment_summary_test.rb",
Expand Down Expand Up @@ -295,12 +299,7 @@ Refer to the README.md file for more information.
Please see http://github.com/newrelic/rpm/blob/master/CHANGELOG
for a complete description of the features and enhancements available
in version 3.2 of the Ruby Agent.
For details on this specific release, refer to the CHANGELOG file.
Notice: Developer Mode now supports only Rails 2.3+ - refer to README
for instructions for previous versions
}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "New Relic Ruby Agent"]
s.require_paths = ["lib"]
Expand Down
4 changes: 3 additions & 1 deletion test/new_relic/rack/browser_monitoring_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ def app
<body>im some body text</body>
</html>
EOL
mock_app = lambda { |env| [200, {'Content-Type' => 'text/html'}, @doc] }
mock_app = lambda do |env|
[200, {'Content-Type' => 'text/html'}, Rack::Response.new(@doc)]
end
NewRelic::Rack::BrowserMonitoring.new(mock_app)
end

Expand Down

0 comments on commit 9dd122e

Please sign in to comment.