Skip to content

Instantly share code, notes, and snippets.

View hamajyotan's full-sized avatar

SAKAGUCHI Takashi hamajyotan

View GitHub Profile
@hamajyotan
hamajyotan / hoge.rb
Created May 24, 2019 00:06
activerecord validation error i18n
# app/models/hoge.rb
class Hoge < ApplicationRecord
validates :foo, presence: true
validates :bar, presence: true
validates :foo, uniqueness: { scope: [:bar] }
end
@hamajyotan
hamajyotan / extconf.rb
Created December 6, 2011 10:56
Data_Wrap_Struct example
require "mkmf"
$libs += " -lstdc++ "
create_makefile("human")