module Tanker
Public Class Methods
const_missing(name)
click to toggle source
Calls superclass method
# File lib/tanker/identity/version.rb, line 6 def self.const_missing(name) super unless name == :VERSION warn "DEPRECATION WARNING: Using `Tanker::VERSION` is deprecated in favor of `Tanker::Identity::VERSION`" Tanker::Identity::VERSION end