Sha256: 93f3f458f7c51eb054476702993526426e478efbf05b487939f78abcf1fefd10

Contents?: true

Size: 237 Bytes

Versions: 1

Compression:

Stored size: 237 Bytes

Contents

module HelloCrush
  class Give
    def initialize(name)
      @name = name
    end

    def for_you
      "#{@name} #{randomg_thing} for you."
    end

    private

    def randomg_thing
      HelloCrush::THINGS.sample
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hello_crush-0.1.1 lib/hello_crush/give.rb