├── .gitignore ├── BeerKit.podspec ├── BeerKit.xcodeproj └── project.pbxproj ├── BeerKit ├── Advertiser.swift ├── BeerKit.h ├── BeerKit.swift ├── Browser.swift ├── EventEntity.swift ├── Info.plist ├── Session.swift └── Transceiver.swift ├── Example ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── MessageEntity.swift └── ViewController.swift ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata -------------------------------------------------------------------------------- /BeerKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/BeerKit.podspec -------------------------------------------------------------------------------- /BeerKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/BeerKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BeerKit/Advertiser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/BeerKit/Advertiser.swift -------------------------------------------------------------------------------- /BeerKit/BeerKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/BeerKit/BeerKit.h -------------------------------------------------------------------------------- /BeerKit/BeerKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/BeerKit/BeerKit.swift -------------------------------------------------------------------------------- /BeerKit/Browser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/BeerKit/Browser.swift -------------------------------------------------------------------------------- /BeerKit/EventEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/BeerKit/EventEntity.swift -------------------------------------------------------------------------------- /BeerKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/BeerKit/Info.plist -------------------------------------------------------------------------------- /BeerKit/Session.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/BeerKit/Session.swift -------------------------------------------------------------------------------- /BeerKit/Transceiver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/BeerKit/Transceiver.swift -------------------------------------------------------------------------------- /Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Example/MessageEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/Example/MessageEntity.swift -------------------------------------------------------------------------------- /Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/Example/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kboy-silvergym/BeerKit/HEAD/README.md --------------------------------------------------------------------------------