aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/module.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2013-12-17 02:31:57 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2013-12-17 02:31:57 -0700
commit1eee0ca6de975b42524105a59e0521d18b38ab81 (patch)
treeb3f3e6cabf4abde34943c65caef263b914d96310 /activesupport/lib/active_support/core_ext/module.rb
parentc28d0f2031d31aeb5289b73acbb5c1adb7bd71d4 (diff)
downloadrails-1eee0ca6de975b42524105a59e0521d18b38ab81.tar.gz
rails-1eee0ca6de975b42524105a59e0521d18b38ab81.tar.bz2
rails-1eee0ca6de975b42524105a59e0521d18b38ab81.zip
Introduce Module#concerning
A natural, low-ceremony way to separate responsibilities within a class. Imported from https://github.com/37signals/concerning#readme
Diffstat (limited to 'activesupport/lib/active_support/core_ext/module.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/module.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/module.rb b/activesupport/lib/active_support/core_ext/module.rb
index f2d4887df6..b4efff8b24 100644
--- a/activesupport/lib/active_support/core_ext/module.rb
+++ b/activesupport/lib/active_support/core_ext/module.rb
@@ -4,6 +4,7 @@ require 'active_support/core_ext/module/anonymous'
require 'active_support/core_ext/module/reachable'
require 'active_support/core_ext/module/attribute_accessors'
require 'active_support/core_ext/module/attr_internal'
+require 'active_support/core_ext/module/concerning'
require 'active_support/core_ext/module/delegation'
require 'active_support/core_ext/module/deprecation'
require 'active_support/core_ext/module/remove_method'