Rails Ujs Custom Event
http://stackoverflow.com/questions/19516654/rails-ujs-confirm-box-cancel-button-callback https://github.com/rails/jquery-ujs/blob/master/src/rails.js#L280
Jquery Animate
http://stackoverflow.com/questions/14304473/jquery-fadein-delay-fadeout
Gem Week Of Month
https://github.com/sachin87/week-of-month
irb, rails console에서의 한글 encoding 문제 해결
기본 encoding : UTF-8 한글 사용을 위해서는 readline 패키지 필요 Ruby를 설치할 때 마다 readline 경로를 명시해야되나, rbenv plugin을 사용하면 자동으로 경로가 지정됨 brew install readline git clone git://github.com/tpope/rbenv-readline.git ~/.rbenv/plugins/rbenv-readline rbenv install <ruby_version> 이미 설치되어 있는 경우, 해당 버전의 ruby를 삭제하고 재설치 rbenv uninstall <ruby_version> rbenv install <ruby_version> irb에서는 한글이 제대로 입력되는데, rails console에서는 그대로 UTF-8로 나오는 경우에, 재부팅을 하고 나니 제대로 한글이 입력되더라. all credit to https://blog.iamseapy.com/archives/177
루비 버전 관리 - rbenv Mac 설치
(rbenv github)1 (ruby-build)2 : rbenv install 명령어를 사용가능하게 하는 plugin 설치 git clone https://github.com/rbenv/rbenv.git ~/.rbenv git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile 간단한 사용법 rbenv install -l // 설치가능한 모든 ruby version list rbenv install 2.2.5 // 2.2.5 버전 ruby 설치 rbenv uninstall 2.2.5 // 2.2.5 버전 ruby 삭제 rbenv local 2.2.5 // 해당 폹더에서 2.2.5 버전 사용 rbenv local // 해당 폴더 루비 버전 확인 –