Skip to content

Commit

Permalink
Updated Rakefile, README, etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Avdi Grimm committed Jan 18, 2010
1 parent 0811be8 commit 96f3365
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -19,3 +19,4 @@ rdoc
pkg

## PROJECT::SPECIFIC
/hammertime.gemspec
8 changes: 8 additions & 0 deletions README.rdoc
Expand Up @@ -75,6 +75,14 @@ This enables a fix-and-continue style of development:
Attempt (3/3)
No error raised

== Known Bugs

* Hammertime cannot intercept exceptions which are raised from native code.

== TODO

* Better integration with IRB to enable a "Retry" option.

== Copyright

Copyright (c) 2010 Avdi Grimm. See LICENSE for details.
9 changes: 8 additions & 1 deletion Rakefile
Expand Up @@ -6,10 +6,17 @@ begin
Jeweler::Tasks.new do |gem|
gem.name = "hammertime"
gem.summary = %Q{Exception debugging console for Ruby}
gem.description = %Q{TODO: longer description of your gem}
gem.description = <<END
When this library is required, it replaces the default Ruby exception-raising
behavior. When an error is raised, the developer is presented with a menu
enabling them to ignore the error, view a stack trace, debug the error using IRB
or ruby-debug, and more.
END
gem.email = "avdi@avdi.org"
gem.homepage = "http://github.com/avdi/hammertime"
gem.authors = ["Avdi Grimm"]
gem.add_dependency "ruby-debug", "~> 0.10"
gem.add_dependency "highline", "~> 1.5"
gem.add_development_dependency "rspec", ">= 1.2.9"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Expand Down
2 changes: 2 additions & 0 deletions example.rb
Expand Up @@ -15,3 +15,5 @@ def faulty_method
puts "Error raised: #{error.inspect}"
end
end


0 comments on commit 96f3365

Please sign in to comment.