Sha256: 1c28f18ff52eba92cb74d6abeaa17474020d19fb82b25145793e1b3eeff3911b

Contents?: true

Size: 1.31 KB

Versions: 71

Compression:

Stored size: 1.31 KB

Contents

module Tins
  # Implementation of the null object pattern in Ruby.
  module Null
    def method_missing(*)
      self
    end

    def const_missing(*)
      self
    end

    def to_s
      ''
    end

    def to_str
      nil
    end

    def to_f
      0.0
    end

    def to_i
      0
    end

    def to_int
      nil
    end

    def to_a
      []
    end

    def to_ary
      nil
    end

    def inspect
      'NULL'
    end

    def nil?
      true
    end

    def blank?
      true
    end

    def as_json(*)
    end

    def to_json(*)
      'null'
    end

    module Kernel
      def null(value = nil)
        value.nil? ? Tins::NULL : value
      end

      alias Null null

      def null_plus(opts = {})
        value = opts[:value]
        opts[:caller] = caller
        if respond_to?(:caller_locations, true)
          opts[:caller_locations] = caller_locations
        end

        value.nil? ? Tins::NullPlus.new(opts) : value
      end

      alias NullPlus null_plus
    end
  end

  class NullClass < Module
    include Tins::Null
  end

  NULL = NullClass.new.freeze

  class NullPlus
    include Tins::Null

    def initialize(opts = {})
      singleton_class.class_eval do
        opts.each do |name, value|
          define_method(name) { value }
        end
      end
    end
  end
end

require 'tins/alias'

Version data entries

71 entries across 67 versions & 8 rubygems

Version Path
tins-1.10.2 lib/tins/null.rb
tins-1.10.1 lib/tins/null.rb
tins-1.10.0 lib/tins/null.rb
tins-1.9.0 lib/tins/null.rb
tins-1.8.2 lib/tins/null.rb
tins-1.8.1 lib/tins/null.rb
tins-1.8.0 lib/tins/null.rb
tins-1.7.0 lib/tins/null.rb
suzuko-0.1.8 vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/null.rb
suzuko-0.1.7 vendor/bundle/ruby/2.0.0/gems/tins-1.6.0/lib/tins/null.rb
mastermind_adeybee-0.1.4 vendor/bundle/ruby/2.2.0/gems/tins-1.6.0/lib/tins/null.rb
mastermind_adeybee-0.1.3 vendor/bundle/ruby/2.2.0/gems/tins-1.6.0/lib/tins/null.rb
mastermind_adeybee-0.1.2 vendor/bundle/ruby/2.2.0/gems/tins-1.6.0/lib/tins/null.rb
mastermind_adeybee-0.1.1 vendor/bundle/ruby/2.2.0/gems/tins-1.6.0/lib/tins/null.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/tins-1.6.0/lib/tins/null.rb
tins-1.6.0 lib/tins/null.rb
tins-1.5.4 lib/tins/null.rb
tins-1.5.3 lib/tins/null.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/tins-1.5.1/lib/tins/null.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/tins-1.5.2/lib/tins/null.rb