Method: Browser::Platform#platform
- Defined in:
- lib/browser/methods/platform.rb
#platform ⇒ Object
Return the platform.
67 68 69 70 71 72 73 74 75 |
# File 'lib/browser/methods/platform.rb', line 67 def platform case when linux? then :linux when mac? then :mac when windows? then :windows else :other end end |