aboutsummaryrefslogtreecommitdiffstats
path: root/spec/support/platforms.rb
blob: 2598488b74027af1ae108c1cbdacc37dd039925a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Spec
  module Platforms
    def rb
      Gem::Platform::RUBY
    end

    def java
      Gem::Platform.new [nil, "java", nil]
    end

    def linux
      Gem::Platform.new ['x86', 'linux', nil]
    end
  end
end