Sha256: 09dd6672499845798808d101c5d51470095bef9bd1903cf1302b7cd693d7f6a4
Contents?: true
Size: 388 Bytes
Versions: 1
Compression:
Stored size: 388 Bytes
Contents
# frozen_string_literal: true require_relative "cherrypie_rails_sdk/version" module CherrypieRailsSdk class Error < StandardError; end # Your code goes here... class Food def initialize() puts("hello world") @food = "food1" end def portray(food) if food.downcase == @food "Gross!" else "Delicious!" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cherrypie-rails-sdk-0.1.0 | lib/cherrypie_rails_sdk.rb |