Skip to content

Commit

Permalink
Moved DJ back into newrelic_rpm
Browse files Browse the repository at this point in the history
  • Loading branch information
Bill Kayser committed Feb 6, 2010
1 parent 5fe0d26 commit dc47d38
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 207 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* Version 1.0.1

Removed DelayedJob, put back in core agent

* Version 1.0.0

Initial Release:
Expand Down
45 changes: 0 additions & 45 deletions lib/rpm_contrib/instrumentation/delayed_job_instrumentation.rb

This file was deleted.

28 changes: 0 additions & 28 deletions lib/rpm_contrib/samplers/delayed_job_lock_sampler.rb

This file was deleted.

12 changes: 5 additions & 7 deletions rpm_contrib.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{rpm_contrib}
s.version = "1.0.0"
s.version = "1.0.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Bill Kayser"]
s.date = %q{2010-01-28}
s.date = %q{2010-02-05}
s.description = %q{ Community contributed instrumentation for various frameworks based on
the New Relic Ruby monitoring gem newrelic_rpm.
}
Expand All @@ -26,11 +26,9 @@ Gem::Specification.new do |s|
"lib/rpm_contrib.rb",
"lib/rpm_contrib/instrumentation/authlogic.rb",
"lib/rpm_contrib/instrumentation/camping.rb",
"lib/rpm_contrib/instrumentation/delayed_job_instrumentation.rb",
"lib/rpm_contrib/instrumentation/paperclip.rb",
"lib/rpm_contrib/samplers/delayed_job_lock_sampler.rb",
"test/delayed_job_instrumentation/delayed_job_test.rb",
"test/helper.rb",
"test/schema.rb",
"test/test_rpm_contrib.rb"
]
s.homepage = %q{http://github.com/newrelic/rpm_contrib}
Expand All @@ -39,8 +37,8 @@ Gem::Specification.new do |s|
s.rubygems_version = %q{1.3.5}
s.summary = %q{Contributed Instrumentation for New Relic RPM}
s.test_files = [
"test/delayed_job_instrumentation/delayed_job_test.rb",
"test/helper.rb",
"test/helper.rb",
"test/schema.rb",
"test/test_rpm_contrib.rb"
]

Expand Down
115 changes: 0 additions & 115 deletions test/delayed_job_instrumentation/test_delayed_job.rb

This file was deleted.

12 changes: 0 additions & 12 deletions test/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,6 @@

ActiveRecord::Schema.define do

create_table :delayed_jobs, :force => true do |table|
table.integer :priority, :default => 0
table.integer :attempts, :default => 0
table.text :handler
table.string :last_error
table.datetime :run_at
table.datetime :locked_at
table.string :locked_by
table.datetime :failed_at
table.timestamps
end

create_table :stories, :force => true do |table|
table.string :text
end
Expand Down

0 comments on commit dc47d38

Please sign in to comment.