Module: Tanker
- Defined in:
- lib/tanker/crypto.rb,
lib/tanker/identity.rb,
lib/tanker/identity/version.rb
Defined Under Namespace
Modules: Crypto, Identity
Class Method Summary
collapse
Class Method Details
.const_missing(name) ⇒ Object
6
7
8
9
10
|
# 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
|