Skip to content

Commit

Permalink
Convert Range conversions extension module to class reopen
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy committed Mar 29, 2009
1 parent 5d5cde4 commit fce6816
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 24 deletions.
3 changes: 2 additions & 1 deletion activesupport/lib/active_support/core_ext/range.rb
@@ -1,4 +1,5 @@
require 'active_support/core_ext/range/conversions'
require 'active_support/core_ext/range/overlaps'

require 'active_support/core_ext/util'
ActiveSupport.core_ext Range, %w(conversions include_range blockless_step)
ActiveSupport.core_ext Range, %w(include_range blockless_step)
40 changes: 17 additions & 23 deletions activesupport/lib/active_support/core_ext/range/conversions.rb
@@ -1,27 +1,21 @@
module ActiveSupport #:nodoc:
module CoreExtensions #:nodoc:
module Range #:nodoc:
# Getting ranges in different convenient string representations and other objects
module Conversions
RANGE_FORMATS = {
:db => Proc.new { |start, stop| "BETWEEN '#{start.to_s(:db)}' AND '#{stop.to_s(:db)}'" }
}
class Range
RANGE_FORMATS = {
:db => Proc.new { |start, stop| "BETWEEN '#{start.to_s(:db)}' AND '#{stop.to_s(:db)}'" }
}

def self.included(base) #:nodoc:
base.class_eval do
alias_method :to_default_s, :to_s
alias_method :to_s, :to_formatted_s
end
end
# Gives a human readable format of the range.
#
# ==== Example
#
# [1..100].to_formatted_s # => "1..100"
def to_formatted_s(format = :default)
RANGE_FORMATS[format] ? RANGE_FORMATS[format].call(first, last) : to_default_s
end
end
# Gives a human readable format of the range.
#
# ==== Example
#
# [1..100].to_formatted_s # => "1..100"
def to_formatted_s(format = :default)
if formatter = RANGE_FORMATS[format]
formatter.call(first, last)
else
to_default_s
end
end

alias_method :to_default_s, :to_s
alias_method :to_s, :to_formatted_s
end

0 comments on commit fce6816

Please sign in to comment.