Method: ShopifyExtensions::Platform#os
- Defined in:
- ext/shopify-extensions/shopify_extensions.rb
#os ⇒ Object
130 131 132 133 134 135 136 137 138 139 |
# File 'ext/shopify-extensions/shopify_extensions.rb', line 130 def os case ruby_config.fetch("host_os") when /linux/ "linux" when /darwin/ "darwin" else "windows" end end |