Skip to content

Instantly share code, notes, and snippets.

View YumaInaura's full-sized avatar

いなうらゆうま ( 稲浦悠馬 ) YumaInaura

View GitHub Profile
@YumaInaura
YumaInaura / file0.txt
Created January 14, 2016 08:29
Ruby | 正規表現のキャプチャでマッチしなかった時の NoMethodError に対策する ref: http://qiita.com/Yinaura/items/61f636c9902b8b9cb196
'Welcome to DIRTY House.'.match(/(?<match>DIRTY)/)[:match]
# => "DIRTY"
@YumaInaura
YumaInaura / file1.txt
Created January 15, 2016 08:53
Rspec | named_let は match_array / contain_exactly には効かない ref: http://qiita.com/Yinaura/items/19feab1cfc184cdfbf00
rspec -fd test_spec.rb
@YumaInaura
YumaInaura / file0.txt
Last active January 18, 2016 02:48
Ruby | 継承元を除外して、新しく追加したメソッドだけを表示する方法 ref: http://qiita.com/Yinaura/items/c7f2a21a0f7eb3dc49cf
Example.methods(false)
@YumaInaura
YumaInaura / .bash_profile
Last active February 2, 2016 01:31
Git | 現在のブランチルートから簡単に rebase -i できるようにする ref: http://qiita.com/Yinaura/items/984e743cdd7583bb8bdf
alias irebase='git rebase -i $(git merge-base master HEAD)'
@YumaInaura
YumaInaura / file0.txt
Last active January 19, 2016 13:18
Ruby | 正規表現の条件式に変数を使うと、名前付きキャプチャによる変数代入が出来ない ref: http://qiita.com/Yinaura/items/13bbc6b050b97139d0d2
/a (?<month>July)/ =~ 'Ruby is a July birth stone'
month # => "July"
@YumaInaura
YumaInaura / file1.txt
Last active June 7, 2016 12:16
Rails | マイグレーションで integer カラムを作る時の :limit は、桁数指定ではない ( バイト数指定だ ) ref: http://qiita.com/Yinaura/items/cede8324d08993d2065c
$ rake db:migrate
@YumaInaura
YumaInaura / file0.txt
Last active January 25, 2016 09:01
ActiveAdmin | filter に as: :string を指定したら、短すぎる maxlength が作られてしまう ref: http://qiita.com/Yinaura/items/3e70f9958590bd0e5e3f
ActiveAdmin.register Example do
filter :id, as: :string
end
@YumaInaura
YumaInaura / file0.txt
Last active July 6, 2017 03:29
Ruby | 配列で最初の要素だけを削除する ( 2行目以降を全て得る ) ref: http://qiita.com/Yinaura/items/129f702553c5b6027bfb
['A','B','C','D','E'].drop(1)
# => ["B", "C", "D", "E"]
@YumaInaura
YumaInaura / Gemfile
Last active January 27, 2016 02:35
Rails | Resque を動かす最小手順の使い方 ref: http://qiita.com/Yinaura/items/715e8158b4b93c71ee36
gem 'resque'
@YumaInaura
YumaInaura / Gemfile
Last active January 27, 2016 02:32
Rails | resque-scheduler を動かす最小手順 ref: http://qiita.com/Yinaura/items/c1b4476c7fe985262796
gem 'resque'
gem 'resque-scheduler'