influitive/apartment

View on GitHub
lib/apartment/deprecation.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'active_support/deprecation'

module Apartment
  module Deprecation

    def self.warn(message)
      ActiveSupport::Deprecation.warn message
    end
  end
end