Sha256: 4dafca4510268f32e69f16e06048f2c8b825503c8943413c988944e50a325cf7
Contents?: true
Size: 905 Bytes
Versions: 19
Compression:
Stored size: 905 Bytes
Contents
module FbGraph2 class Struct class AppLink < Struct register_attributes( raw: [:url] ) class Native < AppLink register_attributes( raw: [:app_name] ) class IOS < Native register_attributes( raw: [:app_store_id] ) end class Android < Native register_attributes( raw: [:package], custom: [:klass] ) def initialize(attributes = {}) super if attributes.include? :class self.klass = attributes[:class] end end end class WindowsPhone < Native register_attributes( raw: [:app_id] ) end end class Web < AppLink register_attributes( raw: [:should_fallback] ) end end end end
Version data entries
19 entries across 19 versions & 1 rubygems