Sha256: 574b79cc3ee00a2456fc3faf1c0334bb30478b2ad754cf46619a5015e5973b4b

Contents?: true

Size: 554 Bytes

Versions: 26

Compression:

Stored size: 554 Bytes

Contents

module Foobara
  module BuiltinTypes
    module Date
      module Casters
        class Hash < Value::Caster
          def applicable?(hash)
            hash.is_a?(::Hash) && hash.keys.size == 3 && (hash.keys.map(&:to_s).sort == %w[day month year])
          end

          def applies_message
            "be a Hash with :year, :month, and :day keys"
          end

          def cast(hash)
            hash = Util.symbolize_keys(hash)

            ::Date.new(hash[:year], hash[:month], hash[:day])
          end
        end
      end
    end
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
foobara-0.0.26 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.25 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.24 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.23 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.22 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.21 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.20 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.19 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.18 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.17 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.16 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.15 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.14 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.13 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.12 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.11 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.10 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.9 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.8 projects/builtin_types/src/date/casters/hash.rb
foobara-0.0.7 projects/builtin_types/src/date/casters/hash.rb