14 lines
287 B
Ruby
14 lines
287 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
# Demo gem for Stack.Gallery Registry e2e tests
|
||
|
|
module StackTestDemoGem
|
||
|
|
VERSION = "1.0.0"
|
||
|
|
|
||
|
|
# Greet the given name
|
||
|
|
# @param name [String] The name to greet
|
||
|
|
# @return [String] A greeting message
|
||
|
|
def self.greet(name)
|
||
|
|
"Hello, #{name}!"
|
||
|
|
end
|
||
|
|
end
|