duffyjp/duffy

View on GitHub
lib/duffy/active_record.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ActiveRecord
  module NestedAttributes
    module ClassMethods
      alias_method :accepts, :accepts_nested_attributes_for
    end
  end

  module Associations
    module ClassMethods
      alias_method :habtm, :has_and_belongs_to_many
    end
  end
end