Sha256: 0bb6e8529c86df02e8b7de990e9837dfd158d34879d38d5249fa63e1dfb9ef0d

Contents?: true

Size: 347 Bytes

Versions: 2

Compression:

Stored size: 347 Bytes

Contents

# frozen_string_literal: true

require_relative "world/version"

module Bp3
  module Hello
    module World
      class Error < StandardError; end

      # Context says it all
      class Context
        def self.say_it!
          "Hello World"
        end

        def say_it!
          self.class.say_it!
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bp3-hello-world-0.1.1 lib/bp3/hello/world.rb
bp3-hello-world-0.1.0 lib/bp3/hello/world.rb