├── .gitignore ├── .travis.yml ├── EventCenter.podspec ├── Example ├── .gitignore ├── EventCenter.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── EventCenter-Example.xcscheme ├── EventCenter.xcworkspace │ └── contents.xcworkspacedata ├── EventCenter │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── EventCenter.swift ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/.travis.yml -------------------------------------------------------------------------------- /EventCenter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/EventCenter.podspec -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- 1 | Pods/ 2 | -------------------------------------------------------------------------------- /Example/EventCenter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/Example/EventCenter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/EventCenter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/Example/EventCenter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/EventCenter.xcodeproj/xcshareddata/xcschemes/EventCenter-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/Example/EventCenter.xcodeproj/xcshareddata/xcschemes/EventCenter-Example.xcscheme -------------------------------------------------------------------------------- /Example/EventCenter.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/Example/EventCenter.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/EventCenter/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/Example/EventCenter/AppDelegate.swift -------------------------------------------------------------------------------- /Example/EventCenter/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/Example/EventCenter/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/EventCenter/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/Example/EventCenter/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/EventCenter/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/Example/EventCenter/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/EventCenter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/Example/EventCenter/Info.plist -------------------------------------------------------------------------------- /Example/EventCenter/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/Example/EventCenter/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/EventCenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/Pod/Classes/EventCenter.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokemokechicken/EventCenter/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------