aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/fixnum.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/core_ext/fixnum.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/fixnum.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/fixnum.rb b/activesupport/lib/active_support/core_ext/fixnum.rb
index e983d5c0f9..519408fb0d 100644
--- a/activesupport/lib/active_support/core_ext/fixnum.rb
+++ b/activesupport/lib/active_support/core_ext/fixnum.rb
@@ -1,9 +1,12 @@
require File.dirname(__FILE__) + '/fixnum/even_odd'
+require File.dirname(__FILE__) + '/fixnum/inflections'
class Fixnum #:nodoc:
include ActiveSupport::CoreExtensions::Fixnum::EvenOdd
+ include ActiveSupport::CoreExtensions::Fixnum::Inflections
end
class Bignum #:nodoc:
include ActiveSupport::CoreExtensions::Fixnum::EvenOdd
+ include ActiveSupport::CoreExtensions::Fixnum::Inflections
end \ No newline at end of file