Method: Frameit::ConfigParser.supported_platform?

Defined in:
frameit/lib/frameit/config_parser.rb

.supported_platform?(value) ⇒ Boolean

Returns:



127
128
129
130
# File 'frameit/lib/frameit/config_parser.rb', line 127

def self.supported_platform?(value)
  return false if value.nil?
  Platform.all_platforms.any?(value)
end