Sha256: 772ab3c213f962390f2e8a36d3a5cc181106aae0ec34021c3fd85154716f2b16

Contents?: true

Size: 679 Bytes

Versions: 4

Compression:

Stored size: 679 Bytes

Contents

module Degica
  class Jack < Person
    def name
      :jack
    end

    def quote
      [
        "To understand VR, you absolutely have to experience it, to immerse yourself in it.",
        "We’ve dealt with all the hassle and complication of Japanese payments so that companies don’t have to",
        "Komoju helps companies quickly accept payments in Japan, and lets consumers pay the way that they want to pay."
      ].sample
    end

    def description
      desc = []
      desc << "It's Jack Momose. He's the CEO of Degica."
      desc << "He is holding a ruby. He doesn't seem to know what he should do with it." if holding?(:ruby)
      desc
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
degica-1.0.3 lib/degica/objects/people/jack.rb
degica-1.0.2 lib/degica/objects/people/jack.rb
degica-1.0.1 lib/degica/objects/people/jack.rb
degica-1.0.0 lib/degica/objects/people/jack.rb