Project

typofixer

0.0
No commit activity in last 3 years
No release in over 3 years
puts を purs とか typo したときに推測して puts を呼び出したうえでログを出力するデバッガ的なあれ
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.13
~> 3.10
 Project Readme

TypoFixer¶ ↑

install¶ ↑

gem install typofixer

description¶ ↑

puts を purs とか typo したときに推測して puts を呼び出したうえでログを出力するデバッガ的なあれ

便利な使い方¶ ↑

とりあえず ~/.irbrc とかに

require 'typofixer'
include TypoFixer::TypoTracker
self.typoout = nil

って書いておけばいろいろ捗りますよ

usage¶ ↑

普通に使う

require "typofixer"

include TypoFixer::TypoTracker

purs "hello typo"

# もしかして: puts
# ... caller ...
# hello typo # 期待される出力.

出力しないで使う

self.typoout = nil

purs "hello typo"

# hello typo # もしかして: も caller も出力されない

ログファイルに書き出す

self.typoout = open "typo.out", "a"

purs "hello typo"
# hello typo # そして typo.out にログが追加書き込みされる