Skip to content

Instantly share code, notes, and snippets.

@noqisofon
Created November 18, 2010 08:46
Show Gist options
  • Save noqisofon/704787 to your computer and use it in GitHub Desktop.
Save noqisofon/704787 to your computer and use it in GitHub Desktop.
.irbrc の中身。
# .irbrc
# -*- encoding: shift_jis -*-
require 'rubygems'
# タブ補完を有効にします。
require 'irb/completion'
# コマンド履歴を有効にします。
require 'irb/ext/save-history'
require 'wirble'
# プロンプトをデフォルトにします。
Wirble.init( :skip_prompt => :DEFAULT )
unless RUBY_PLATFORM =~ /.*mingw32/ then
# コマプロでは文字化けしてしまうのでカラフルにはしません。
Wirble.colorize
end
# コマンド履歴が 1000 件保存されます。
IRB.conf[:SAVE_HISTORY] = 1000
# 構文に沿ったインデントを行います。
IRB.conf[:AUTO_INDENT] = true
;; .irbrc ends here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment