Skip to content

Commit

Permalink
fixed exception error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
Orion Henry committed Jul 28, 2010
1 parent e9607cb commit 035eb33
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.13
0.1.14
2 changes: 1 addition & 1 deletion lib/minion.rb
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def amqp_config
:port => (uri.port || 5672),
:pass => uri.password
}
rescue
rescue Object => e
raise "invalid AMQP_URL: #{uri.inspect} (#{e})"
end

Expand Down
6 changes: 3 additions & 3 deletions minion.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{minion}
s.version = "0.1.13"
s.version = "0.1.14"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Orion Henry"]
s.date = %q{2010-01-27}
s.date = %q{2010-07-27}
s.description = %q{Super simple job queue over AMQP}
s.email = %q{orion@heroku.com}
s.extra_rdoc_files = [
Expand All @@ -28,7 +28,7 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{minion}
s.rubygems_version = %q{1.3.5}
s.rubygems_version = %q{1.3.6}
s.summary = %q{Super simple job queue over AMQP}
s.test_files = [
"spec/base.rb",
Expand Down

0 comments on commit 035eb33

Please sign in to comment.