30
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ハッピーになれるpry拡張詰め合わせGemfile

Last updated at Posted at 2012-12-26

この記事に感動したので、gemfileにまとめてみました。各gemの使い方はこの記事を参照してください。

Gemfile
source 'http://rubygems.org'

group :development do
  gem 'pry-rails'
  gem 'pry-debugger'
  gem 'pry-exception_explorer'
  gem 'hirb-unicode'
end
.pryrc
# https://github.com/pry/pry/wiki/FAQ#wiki-hirb
require 'hirb'

Hirb.enable

old_print = Pry.config.print
Pry.config.print = proc do |output, value|
  Hirb::View.view_or_page_output(value) || old_print.call(output, value)
end

追記:2012/3/20

  • pry-coollineは日本語を入力すると表示が崩れてしまうのでいったん外しました
30
31
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
30
31

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?