https://github.com/janlelis/ripltools
This meta gem installs a bunch of ripl plugins for a nice-to-use general purpose ripl.
https://github.com/janlelis/ripltools
ripl ruby
Last synced: 8 months ago
JSON representation
This meta gem installs a bunch of ripl plugins for a nice-to-use general purpose ripl.
- Host: GitHub
- URL: https://github.com/janlelis/ripltools
- Owner: janlelis
- License: mit
- Created: 2010-12-16T22:13:51.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2013-04-30T13:51:22.000Z (about 13 years ago)
- Last Synced: 2025-10-13T22:22:20.459Z (8 months ago)
- Topics: ripl, ruby
- Language: Ruby
- Homepage:
- Size: 105 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rdoc
- Changelog: CHANGELOG.rdoc
- License: LICENSE.txt
Awesome Lists containing this project
README
= ripltools
This is a meta gem that installs a base set of {ripl}[https://github.com/cldwalker/ripl] plugins for a nice-to-use, general purpose _ripl_.
== Setup
gem install ripltools
== Usage
To use it, put the following in your ~/.riplrc file (this file is loaded every time you start _ripl_):
require 'ripltools'
If it does not exist, just create a new one.
You cannot modify the loaded plugins. If you want to change them, copy the source of this gem and paste it in your .riplrc.
Alternatively, you can use ripltools to easily install the plugins, but require manually the ones you want.
=== Irbtools
The {irbtools}[https://github.com/janlelis/irbtools] gem is compatible with _ripl_ and _ripltools_. _ripltools_ only includes _ripl_-specific gems, while _irbtools_ includes general "Ruby console features" (e.g. {interactive_editor}[https://github.com/jberkel/interactive_editor]).
=== Included gems
* {ripl}[https://github.com/cldwalker/ripl]
* {gem-man}[https://github.com/defunkt/gem-man]
* {hirb}[https://github.com/cldwalker/hirb]
* {ripl-multi_line}[https://github.com/janlelis/ripl-multi_line]
* {ripl-auto_indent}[https://github.com/janlelis/ripl-auto_indent]
* {ripl-short_errors}[https://github.com/janlelis/ripl-misc/blob/master/lib/ripl/short_errors.rb]
* {ripl-color_error}[https://github.com/cldwalker/ripl-color_error]
* {ripl-color_result}[https://github.com/janlelis/ripl-color_result]
* {ripl-color_streams}[https://github.com/janlelis/ripl-color_streams]
* {ripl-play}[https://github.com/cldwalker/ripl-play]
* {ripl-commands}[https://github.com/cldwalker/ripl-commands]
* {ripl-after_rc}[https://github.com/cldwalker/ripl-after_rc]
* {ripl-profiles}[https://github.com/janlelis/ripl-profiles]
* {ripl-i18n}[https://github.com/cldwalker/ripl-i18n]
==== Not included, anymore
* {ripl-rocket}[https://github.com/janlelis/ripl-rocket]
=== Other interesting ripl plugins, but not included in ripltools
The {ripl github page}[https://github.com/cldwalker/ripl] has a large list of available plugins. You can also search through rubygems with:
gem list -r ripl-.*
== Copyright
Copyright (c) 2010-2013 Jan Lelis released under the MIT license.
J-_-L