Sha256: 3589dfdcbba2b5722aae1479a42e9fe3c44578cce9ed191cdb050f085291c594

Contents?: true

Size: 218 Bytes

Versions: 2

Compression:

Stored size: 218 Bytes

Contents

module Arel
  module Nodes
    class TimeWithPrecision < Arel::Nodes::Node
      attr_reader :precision

      def initialize(precision: nil)
        super()

        @precision = precision
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
arel_toolkit-0.3.0 lib/arel/extensions/time_with_precision.rb
arel_toolkit-0.2.0 lib/arel/extensions/time_with_precision.rb