Method: Bundler::Dsl#platforms

Defined in:
lib/bundler/dsl.rb

#platforms(*platforms) ⇒ Object Also known as: platform

[View source]

205
206
207
208
209
210
# File 'lib/bundler/dsl.rb', line 205

def platforms(*platforms)
  @platforms.concat platforms
  yield
ensure
  platforms.each { @platforms.pop }
end