summaryrefslogtreecommitdiff
path: root/test/ruby/namespace/a.1_1_0.rb
blob: bf64dbaa62264c3bbe33d1fdf26118e88c6e00b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class NS_A
  VERSION = "1.1.0"

  def yay
    "yay #{VERSION}"
  end
end

module NS_B
  VERSION = "1.1.0"

  def self.yay
    "yay_b1"
  end
end