Skip to content

Commit

Permalink
Version 0.0.3
Browse files Browse the repository at this point in the history
Added README and CHANGELOG
  • Loading branch information
nixme committed Nov 30, 2011
1 parent 0ca791f commit 3fe5aab
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 2 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,24 @@
## 0.0.3 (2011-11-30)

* Add [pry-nav][pry-nav].
* Upgrade [awesome_print][awesome_print] to 1.0.1.

## 0.0.2 (2011-11-25)

* Add pry-doc.

## 0.0.1 (2011-11-25)

* First release. Combine [pry][pry], [awesome_print][awesome_print],
[coolline][coolline] + [coderay][coderay], [pry-remote][pry-remote],
[pry-git][pry-git]. Bit of glue to replace IRB with pry in Rails console,
pretty colors.


[pry]: http://pry.github.com
[awesome_print]: https://github.com/michaeldv/awesome_print
[pry-git]: https://github.com/pry/pry-git
[pry-nav]: https://github.com/nixme/pry-nav
[pry-remote]: https://github.com/Mon-Ouie/pry-remote
[coolline]: https://github.com/Mon-Ouie/coolline
[coderay]: https://github.com/rubychan/coderay
46 changes: 46 additions & 0 deletions README.md
@@ -0,0 +1,46 @@
Jazz Hands
==========

Spending hours in the rails console? Spruce it up and show off those
hard-working hands!

**jazz_hands** combines multiple console-related gems and a bit of glue:

* [**Pry**][pry] for a powerful shell alternative to IRB.
* [**Awesome Print**][awesome_print] for stylish pretty print.
* [**Pry Doc**] to browse Ruby source, including C, directly from the console.
* [**Pry Git**][pry-git] to teach the console about git. Diffs, blames, and
commits on methods and classes, not just files.
* [**Pry Nav**][pry-nav] to turn the console into a simple debugger.
* [**Pry Remote**][pry-remote] to connect remotely to a Pry console.
* [**Coolline**][coolline] and [**Coderay**][coderay] for syntax highlighting as
you type (_Ruby 1.9.3 only_).


## Usage

Rails 3 and above only. Add to your project Gemfile:

```ruby
group :development, :test do
gem 'jazz_hands'
end
```


## Contributing

Patches and bug reports are welcome. Just send a [pull request][pullrequests] or
file an [issue][issues]. [Project changelog][changelog].


[pry]: http://pry.github.com
[awesome_print]: https://github.com/michaeldv/awesome_print
[pry-git]: https://github.com/pry/pry-git
[pry-nav]: https://github.com/nixme/pry-nav
[pry-remote]: https://github.com/Mon-Ouie/pry-remote
[coolline]: https://github.com/Mon-Ouie/coolline
[coderay]: https://github.com/rubychan/coderay
[pullrequests]: https://github.com/nixme/jazz_hands/pulls
[issues]: https://github.com/nixme/jazz_hands/issues
[changelog]: https://github.com/nixme/jazz_hands/blob/master/CHANGELOG.md
2 changes: 1 addition & 1 deletion jazz_hands.gemspec
Expand Up @@ -26,5 +26,5 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency 'pry-nav', '>= 0.0.2'
gem.add_runtime_dependency 'coolline', '>= 0.1.0'
gem.add_runtime_dependency 'coderay', '>= 0.9.8'
gem.add_runtime_dependency 'awesome_print', '~> 0.4.0'
gem.add_runtime_dependency 'awesome_print', '~> 1.0.1'
end
2 changes: 1 addition & 1 deletion lib/jazz_hands/version.rb
@@ -1,3 +1,3 @@
module JazzHands
VERSION = '0.0.2'
VERSION = '0.0.3'
end

0 comments on commit 3fe5aab

Please sign in to comment.