Skip to content

Instantly share code, notes, and snippets.

@kmdsbng
Last active August 29, 2015 14:10
Show Gist options
  • Select an option

  • Save kmdsbng/b7224cbd16c4e747c66d to your computer and use it in GitHub Desktop.

Select an option

Save kmdsbng/b7224cbd16c4e747c66d to your computer and use it in GitHub Desktop.
require 'active_support/all'
class A
cattr_accessor :hoge
class << self
attr_accessor :moge
end
end
class B < A; end
A.hoge # => nil
A.moge # => nil
B.hoge = 1
B.moge = 2
A.hoge # => 1
A.moge # => nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment