blob: 29813ea57b2a708811b476b67d8700ca44317278 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# frozen_string_literal: true
class BOX_A
VERSION = "1.2.0"
def yay
"yay #{VERSION}"
end
end
module BOX_B
VERSION = "1.2.0"
def self.yay
"yay_b1"
end
end
|