Guest User

Untitled

a guest
Jan 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. module MyGem
  2. class Configuration
  3. end
  4.  
  5. def self.const_missing(const_name)
  6. super unless const_name == :Config
  7. warn "`MyGem::Config` has been deprecated. Use `MyGem::Configuration` instead."
  8. Configuration
  9. end
  10. end
Add Comment
Please, Sign In to add comment