Accessing Helper modules in rails

>Methods defined in Helper modules can directly accessed in rails views because this is what they are pretended for but we often come across with situations where we wanted to use some helper methods in controllers, views, models and mailers and obvious we don't want to repeat same lines of code everywhere which also rail … Continue reading Accessing Helper modules in rails

authlogic custom conditions for authentication

>To Add custom conditions to authlogic finders first of all we need to override authlogic find_by_login method.class UserSession < Authlogic::Session::Base  after_validation :check_if_verified  find_by_login_method :find_by_login_and_deleted_methodendThen we need to define overridden method inside User modelclass User < ActiveRecord::Base  acts_as_authentic  def self.find_by_login_and_deleted_method(login)    find_by_email_and_deleted(login, false)  endendgot easy..wooooooo 🙂

Paperclip: validates_attachment_content_type always fails in IE 6 and 7 for jepg and png image

If you are using paperclip plugin for uploading images in your rails application and you are validating image format. Image format validation working in Firefox, safari but not in IE, even you are uploading image in correct format in IE then they showing error,  image format not correct. eg: validates_attachment_content_type :image, :message => 'Please upload … Continue reading Paperclip: validates_attachment_content_type always fails in IE 6 and 7 for jepg and png image