blob: a7fa2f3a894cd3fe7bcf088466e78e2d1f5d2447 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
# frozen_string_literal: true
module Bundler
# Returns current version of Ruby
#
# @return [CurrentRuby] Current version of Ruby
def self.current_ruby
@current_ruby ||= CurrentRuby.new
end
class CurrentRuby
def on_18?
RUBY_VERSION =~ /^1\.8/
end
def on_19?
RUBY_VERSION =~ /^1\.9/
end
def on_20?
RUBY_VERSION =~ /^2\.0/
end
def on_21?
RUBY_VERSION =~ /^2\.1/
end
def on_22?
RUBY_VERSION =~ /^2\.2/
end
def on_23?
RUBY_VERSION =~ /^2\.3/
end
def on_2?
on_20? || on_21? || on_22? || on_23?
end
def ruby?
!mswin? && (!defined?(RUBY_ENGINE) || RUBY_ENGINE == "ruby" || RUBY_ENGINE == "rbx" || RUBY_ENGINE == "maglev")
end
def ruby_18?
ruby? && on_18?
end
def ruby_19?
ruby? && on_19?
end
def ruby_20?
ruby? && on_20?
end
def ruby_21?
ruby? && on_21?
end
def ruby_22?
ruby? && on_22?
end
def ruby_23?
ruby? && on_23?
end
def ruby_2?
ruby? && on_2?
end
def mri?
!mswin? && (!defined?(RUBY_ENGINE) || RUBY_ENGINE == "ruby")
end
def mri_18?
mri? && on_18?
end
def mri_19?
mri? && on_19?
end
def mri_20?
mri? && on_20?
end
def mri_21?
mri? && on_21?
end
def mri_22?
mri? && on_22?
end
def mri_23?
mri? && on_23?
end
def rbx?
ruby? && defined?(RUBY_ENGINE) && RUBY_ENGINE == "rbx"
end
def jruby?
defined?(RUBY_ENGINE) && RUBY_ENGINE == "jruby"
end
def jruby_18?
jruby? && on_18?
end
def jruby_19?
jruby? && on_19?
end
def maglev?
defined?(RUBY_ENGINE) && RUBY_ENGINE == "maglev"
end
def mswin?
Bundler::WINDOWS
end
def mswin_18?
mswin? && on_18?
end
def mswin_19?
mswin? && on_19?
end
def mswin_20?
mswin? && on_20?
end
def mswin_21?
mswin? && on_21?
end
def mswin_22?
mswin? && on_22?
end
def mswin_23?
mswin? && on_23?
end
def mswin64?
Bundler::WINDOWS && Gem::Platform.local.os == "mswin64" && Gem::Platform.local.cpu == "x64"
end
def mswin64_19?
mswin64? && on_19?
end
def mswin64_20?
mswin64? && on_20?
end
def mswin64_21?
mswin64? && on_21?
end
def mswin64_22?
mswin64? && on_22?
end
def mswin64_23?
mswin64? && on_23?
end
def mingw?
Bundler::WINDOWS && Gem::Platform.local.os == "mingw32" && Gem::Platform.local.cpu != "x64"
end
def mingw_18?
mingw? && on_18?
end
def mingw_19?
mingw? && on_19?
end
def mingw_20?
mingw? && on_20?
end
def mingw_21?
mingw? && on_21?
end
def mingw_22?
mingw? && on_22?
end
def mingw_23?
mingw? && on_23?
end
def x64_mingw?
Bundler::WINDOWS && Gem::Platform.local.os == "mingw32" && Gem::Platform.local.cpu == "x64"
end
def x64_mingw_20?
x64_mingw? && on_20?
end
def x64_mingw_21?
x64_mingw? && on_21?
end
def x64_mingw_22?
x64_mingw? && on_22?
end
def x64_mingw_23?
x64_mingw? && on_23?
end
end
end
|