├── .gitignore ├── .travis.yml ├── API.md ├── CONTRIBUTING.md ├── INSTALLATION.md ├── Package.swift ├── README.md └── Sources └── Bot ├── Bot+Convenience.swift ├── Bot+DataService.swift ├── Bot+EventDispatch.swift ├── Bot+State.swift ├── Bot.swift ├── RTMStartOption+ConfigValue.swift ├── SlackAuthenticator+OAuth.swift ├── SlackAuthenticator+OAuthAuthenticator.swift ├── SlackAuthenticator+OAuthErrors.swift ├── SlackAuthenticator+Token.swift ├── SlackAuthenticator.swift └── SlackService.swift /.gitignore: -------------------------------------------------------------------------------- 1 | Packages 2 | .build 3 | .DS_Store 4 | *.xcodeproj 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/.travis.yml -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/API.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Bot/Bot+Convenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/Sources/Bot/Bot+Convenience.swift -------------------------------------------------------------------------------- /Sources/Bot/Bot+DataService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/Sources/Bot/Bot+DataService.swift -------------------------------------------------------------------------------- /Sources/Bot/Bot+EventDispatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/Sources/Bot/Bot+EventDispatch.swift -------------------------------------------------------------------------------- /Sources/Bot/Bot+State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/Sources/Bot/Bot+State.swift -------------------------------------------------------------------------------- /Sources/Bot/Bot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/Sources/Bot/Bot.swift -------------------------------------------------------------------------------- /Sources/Bot/RTMStartOption+ConfigValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/Sources/Bot/RTMStartOption+ConfigValue.swift -------------------------------------------------------------------------------- /Sources/Bot/SlackAuthenticator+OAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/Sources/Bot/SlackAuthenticator+OAuth.swift -------------------------------------------------------------------------------- /Sources/Bot/SlackAuthenticator+OAuthAuthenticator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/Sources/Bot/SlackAuthenticator+OAuthAuthenticator.swift -------------------------------------------------------------------------------- /Sources/Bot/SlackAuthenticator+OAuthErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/Sources/Bot/SlackAuthenticator+OAuthErrors.swift -------------------------------------------------------------------------------- /Sources/Bot/SlackAuthenticator+Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/Sources/Bot/SlackAuthenticator+Token.swift -------------------------------------------------------------------------------- /Sources/Bot/SlackAuthenticator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/Sources/Bot/SlackAuthenticator.swift -------------------------------------------------------------------------------- /Sources/Bot/SlackService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChameleonBot/Bot/HEAD/Sources/Bot/SlackService.swift --------------------------------------------------------------------------------