Skip to content

Instantly share code, notes, and snippets.

View yannlugrin's full-sized avatar

Yann Lugrin yannlugrin

View GitHub Profile
@rmoriz
rmoriz / Gemfile
Last active February 7, 2020 12:30
UUID primary keys in Rails 3
# Gemfile
gem 'uuidtools'
Dir[Rails.root.join('**', '*.rb')].each do |f|
c = File.open(f).read
File.open(f, 'w').write("# encoding: UTF-8\n" + c)
end