Class: FiveMobilePush::Platform

Inherits:
Object
  • Object
show all
Defined in:
lib/five_mobile_push/platform.rb

Overview

Stores supported platform names as defined constants. – Internal to this gem, this class also aids in building and verifying selected platforms.

Constant Summary collapse

ALL =
"all"
IPHONE =
"iphone"
BLACKBERRY =
"blackberry"
ANDROID =
"android"
SUPPORTED_PLATFORMS =
[
  ALL,
  IPHONE,
  BLACKBERRY,
  ANDROID
]