class Ahoy::Generators::Messages::MongoidGenerator

Public Instance Methods

copy_templates() click to toggle source
# File lib/generators/ahoy/messages/mongoid_generator.rb, line 13
def copy_templates
  case encryption
  when "lockbox"
    template "mongoid_lockbox.rb", "app/models/ahoy/message.rb", lockbox_method: lockbox_method
  else
    template "mongoid.rb", "app/models/ahoy/message.rb"
  end
end
encryption() click to toggle source

TODO remove default

# File lib/generators/ahoy/messages/mongoid_generator.rb, line 23
def encryption
  case options[:encryption]
  when "lockbox", "none"
    options[:encryption]
  when nil
    if options[:unencrypted]
      # TODO deprecation warning
      "none"
    else
      "lockbox"
    end
  else
    abort "Error: encryption must be lockbox or none"
  end
end
lockbox_method() click to toggle source
# File lib/generators/ahoy/messages/mongoid_generator.rb, line 39
def lockbox_method
  if defined?(Lockbox::VERSION) && Lockbox::VERSION.to_i < 1
    "encrypts"
  else
    "has_encrypted"
  end
end