Sha256: cac565c7d8d997171f984150f16a3ad1fdd8c1fd9dea3a813e9de99e7df6ae26

Contents?: true

Size: 439 Bytes

Versions: 250

Compression:

Stored size: 439 Bytes

Contents

# frozen_string_literal: true

module ActionView
  module Helpers
    module Tags # :nodoc:
      class NumberField < TextField # :nodoc:
        def render
          options = @options.stringify_keys

          if range = options.delete("in") || options.delete("within")
            options.update("min" => range.min, "max" => range.max)
          end

          @options = options
          super
        end
      end
    end
  end
end

Version data entries

250 entries across 237 versions & 17 rubygems

Version Path
actionview-8.0.0 lib/action_view/helpers/tags/number_field.rb
actionview-7.2.2 lib/action_view/helpers/tags/number_field.rb
actionview-7.1.5 lib/action_view/helpers/tags/number_field.rb
actionview-8.0.0.rc2 lib/action_view/helpers/tags/number_field.rb
actionview-7.2.1.2 lib/action_view/helpers/tags/number_field.rb
actionview-7.1.4.2 lib/action_view/helpers/tags/number_field.rb
actionview-7.0.8.6 lib/action_view/helpers/tags/number_field.rb
actionview-6.1.7.10 lib/action_view/helpers/tags/number_field.rb
actionview-8.0.0.rc1 lib/action_view/helpers/tags/number_field.rb
actionview-6.1.7.9 lib/action_view/helpers/tags/number_field.rb
actionview-7.2.1.1 lib/action_view/helpers/tags/number_field.rb
actionview-7.1.4.1 lib/action_view/helpers/tags/number_field.rb
actionview-7.0.8.5 lib/action_view/helpers/tags/number_field.rb
actionview-8.0.0.beta1 lib/action_view/helpers/tags/number_field.rb
omg-actionview-8.0.0.alpha9 lib/action_view/helpers/tags/number_field.rb
omg-actionview-8.0.0.alpha8 lib/action_view/helpers/tags/number_field.rb
omg-actionview-8.0.0.alpha7 lib/action_view/helpers/tags/number_field.rb
omg-actionview-8.0.0.alpha4 lib/action_view/helpers/tags/number_field.rb
omg-actionview-8.0.0.alpha3 lib/action_view/helpers/tags/number_field.rb
omg-actionview-8.0.0.alpha2 lib/action_view/helpers/tags/number_field.rb