diff --git a/CHANGELOG b/CHANGELOG index 141daeb..b1438cd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,9 @@ +* Version 1.0.11 + + AWS/S3 instrumentation contributed by Brian Doll + Cassandra instrumentation contributed by Ashley Martens + Updated Redis instrumentation for 1.x and 2.x contributed by Karl Baum + * Version 1.0.10 Mongoid support contributed by Karl Baum diff --git a/rpm_contrib.gemspec b/rpm_contrib.gemspec index 30fb651..f2016e9 100644 --- a/rpm_contrib.gemspec +++ b/rpm_contrib.gemspec @@ -5,11 +5,11 @@ Gem::Specification.new do |s| s.name = %q{rpm_contrib} - s.version = "1.0.10" + s.version = "1.0.11" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Bill Kayser"] - s.date = %q{2010-05-21} + s.date = %q{2010-09-01} s.description = %q{Community contributed instrumentation for various frameworks based on the New Relic Ruby monitoring gem newrelic_rpm. } @@ -28,7 +28,9 @@ the New Relic Ruby monitoring gem newrelic_rpm. "lib/rpm_contrib.rb", "lib/rpm_contrib/detection/camping.rb", "lib/rpm_contrib/detection/resque.rb", + "lib/rpm_contrib/instrumentation/aws/s3.rb", "lib/rpm_contrib/instrumentation/camping.rb", + "lib/rpm_contrib/instrumentation/cassandra.rb", "lib/rpm_contrib/instrumentation/mongo_mapper.rb", "lib/rpm_contrib/instrumentation/mongoid.rb", "lib/rpm_contrib/instrumentation/paperclip.rb", @@ -36,24 +38,26 @@ the New Relic Ruby monitoring gem newrelic_rpm. "lib/rpm_contrib/instrumentation/resque.rb", "test/helper.rb", "test/schema.rb", - "test/test_mongoid.rb" + "test/test_mongoid.rb", + "test/test_redis.rb" ] s.homepage = %q{http://github.com/newrelic/rpm_contrib} s.rdoc_options = ["--charset=UTF-8", "--line-numbers", "--inline-source", "--title", "Contributed Instrumentation for New Relic RPM", "-m", "README.md"] s.require_paths = ["lib"] - s.rubygems_version = %q{1.3.6} + s.rubygems_version = %q{1.3.7} s.summary = %q{Contributed Instrumentation for New Relic RPM} s.test_files = [ "test/helper.rb", "test/schema.rb", - "test/test_mongoid.rb" + "test/test_mongoid.rb", + "test/test_redis.rb" ] if s.respond_to? :specification_version then current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION s.specification_version = 3 - if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_runtime_dependency(%q, [">= 2.11.1"]) else s.add_dependency(%q, [">= 2.11.1"])