Module: Paperclip::Glue
- Defined in:
- lib/paperclip/glue.rb
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
7 8 9 10 11 12 13 14 15 |
# File 'lib/paperclip/glue.rb', line 7 def self.included(base) base.extend ClassMethods base.send :include, Callbacks base.send :include, Validators base.send :include, Schema if defined? ActiveRecord::Base locale_path = Dir.glob(File.dirname(__FILE__) + "/locales/*.{rb,yml}") I18n.load_path += locale_path unless I18n.load_path.include?(locale_path) end |