├── .gitignore ├── Assets ├── Catamaran-icon.png ├── Catamaran.gif ├── facebook-logo.png ├── foursquare-logo.png ├── github-logo.png ├── google-logo.png ├── instagram-logo.png ├── linkedIn-logo.png ├── mail-ru-logo.png ├── ok-logo.png ├── vk-logo.png └── yandex-logo.png ├── Catamaran ├── Logic │ ├── CATOAuthConfigurator.h │ ├── CATOAuthCredential.h │ ├── CATOAuthCredential.m │ ├── CATOAuthManager.h │ ├── CATOAuthManager.m │ ├── CATOAuthResponseParser.h │ ├── CATOAuthResponseParser.m │ ├── CATSocialOAuthFactory.h │ ├── CATSocialOAuthFactory.m │ └── SocialNetworks │ │ ├── Base │ │ ├── CATOAuthAppearance.h │ │ ├── CATOAuthAppearance.m │ │ ├── CATSocialOAuth.h │ │ └── CATSocialOAuth.m │ │ ├── CATOAuths.h │ │ ├── Facebook │ │ ├── CATFacebookAppearance.h │ │ ├── CATFacebookAppearance.m │ │ ├── CATFacebookOAuth.h │ │ └── CATFacebookOAuth.m │ │ ├── Foursquare │ │ ├── CATFoursquareAppearance.h │ │ ├── CATFoursquareAppearance.m │ │ ├── CATFoursquareOAuth.h │ │ └── CATFoursquareOAuth.m │ │ ├── GitHub │ │ ├── CATGitHubAppearance.h │ │ ├── CATGitHubAppearance.m │ │ ├── CATGitHubOAuth.h │ │ └── CATGitHubOAuth.m │ │ ├── Google │ │ ├── CATGoogleAppearance.h │ │ ├── CATGoogleAppearance.m │ │ ├── CATGoogleOAuth.h │ │ └── CATGoogleOAuth.m │ │ ├── Intagram │ │ ├── CATInstagramAppearance.h │ │ ├── CATInstagramAppearance.m │ │ ├── CATInstagramOAuth.h │ │ └── CATInstagramOAuth.m │ │ ├── Linkedin │ │ ├── CATLinkedInAppearance.h │ │ ├── CATLinkedInAppearance.m │ │ ├── CATLinkedInOAuth.h │ │ └── CATLinkedInOAuth.m │ │ ├── MailRu │ │ ├── CATMailRuAppearance.h │ │ ├── CATMailRuAppearance.m │ │ ├── CATMailRuOAuth.h │ │ └── CATMailRuOAuth.m │ │ ├── OK │ │ ├── CATOKAppearance.h │ │ ├── CATOKAppearance.m │ │ ├── CATOKOAuth.h │ │ └── CATOKOAuth.m │ │ ├── VK │ │ ├── CATVKAppearance.h │ │ ├── CATVKAppearance.m │ │ ├── CATVKOAuth.h │ │ └── CATVKOAuth.m │ │ └── Yandex │ │ ├── CATYandexOAuth.h │ │ ├── CATYandexOAuth.m │ │ ├── CATYanexAppearance.h │ │ └── CATYanexAppearance.m ├── View │ ├── CATOAuthView.h │ └── CATOAuthView.m └── ViewController │ ├── CATOAuthController.h │ └── CATOAuthController.m ├── Demo └── CatamaranDemo │ ├── .idea │ ├── .name │ ├── CatamaranDemo.iml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ ├── workspace.xml │ └── xcode.xml │ ├── CatamaranDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── alexandr.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── alexandr.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── CatamaranDemo.xcscheme │ │ └── xcschememanagement.plist │ └── CatamaranDemo │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CATDAppDelegate.h │ ├── CATDAppDelegate.m │ ├── CATDConfigurator.h │ ├── CATDConfigurator.m │ ├── CATDOAuthsController.h │ ├── CATDOAuthsController.m │ ├── Info.plist │ └── main.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Catamaran-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Assets/Catamaran-icon.png -------------------------------------------------------------------------------- /Assets/Catamaran.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Assets/Catamaran.gif -------------------------------------------------------------------------------- /Assets/facebook-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Assets/facebook-logo.png -------------------------------------------------------------------------------- /Assets/foursquare-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Assets/foursquare-logo.png -------------------------------------------------------------------------------- /Assets/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Assets/github-logo.png -------------------------------------------------------------------------------- /Assets/google-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Assets/google-logo.png -------------------------------------------------------------------------------- /Assets/instagram-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Assets/instagram-logo.png -------------------------------------------------------------------------------- /Assets/linkedIn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Assets/linkedIn-logo.png -------------------------------------------------------------------------------- /Assets/mail-ru-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Assets/mail-ru-logo.png -------------------------------------------------------------------------------- /Assets/ok-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Assets/ok-logo.png -------------------------------------------------------------------------------- /Assets/vk-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Assets/vk-logo.png -------------------------------------------------------------------------------- /Assets/yandex-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Assets/yandex-logo.png -------------------------------------------------------------------------------- /Catamaran/Logic/CATOAuthConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/CATOAuthConfigurator.h -------------------------------------------------------------------------------- /Catamaran/Logic/CATOAuthCredential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/CATOAuthCredential.h -------------------------------------------------------------------------------- /Catamaran/Logic/CATOAuthCredential.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/CATOAuthCredential.m -------------------------------------------------------------------------------- /Catamaran/Logic/CATOAuthManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/CATOAuthManager.h -------------------------------------------------------------------------------- /Catamaran/Logic/CATOAuthManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/CATOAuthManager.m -------------------------------------------------------------------------------- /Catamaran/Logic/CATOAuthResponseParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/CATOAuthResponseParser.h -------------------------------------------------------------------------------- /Catamaran/Logic/CATOAuthResponseParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/CATOAuthResponseParser.m -------------------------------------------------------------------------------- /Catamaran/Logic/CATSocialOAuthFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/CATSocialOAuthFactory.h -------------------------------------------------------------------------------- /Catamaran/Logic/CATSocialOAuthFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/CATSocialOAuthFactory.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Base/CATOAuthAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Base/CATOAuthAppearance.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Base/CATOAuthAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Base/CATOAuthAppearance.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Base/CATSocialOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Base/CATSocialOAuth.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Base/CATSocialOAuth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Base/CATSocialOAuth.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/CATOAuths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/CATOAuths.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Facebook/CATFacebookAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Facebook/CATFacebookAppearance.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Facebook/CATFacebookAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Facebook/CATFacebookAppearance.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Facebook/CATFacebookOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Facebook/CATFacebookOAuth.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Facebook/CATFacebookOAuth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Facebook/CATFacebookOAuth.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Foursquare/CATFoursquareAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Foursquare/CATFoursquareAppearance.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Foursquare/CATFoursquareAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Foursquare/CATFoursquareAppearance.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Foursquare/CATFoursquareOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Foursquare/CATFoursquareOAuth.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Foursquare/CATFoursquareOAuth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Foursquare/CATFoursquareOAuth.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/GitHub/CATGitHubAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/GitHub/CATGitHubAppearance.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/GitHub/CATGitHubAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/GitHub/CATGitHubAppearance.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/GitHub/CATGitHubOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/GitHub/CATGitHubOAuth.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/GitHub/CATGitHubOAuth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/GitHub/CATGitHubOAuth.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Google/CATGoogleAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Google/CATGoogleAppearance.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Google/CATGoogleAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Google/CATGoogleAppearance.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Google/CATGoogleOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Google/CATGoogleOAuth.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Google/CATGoogleOAuth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Google/CATGoogleOAuth.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Intagram/CATInstagramAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Intagram/CATInstagramAppearance.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Intagram/CATInstagramAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Intagram/CATInstagramAppearance.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Intagram/CATInstagramOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Intagram/CATInstagramOAuth.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Intagram/CATInstagramOAuth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Intagram/CATInstagramOAuth.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Linkedin/CATLinkedInAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Linkedin/CATLinkedInAppearance.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Linkedin/CATLinkedInAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Linkedin/CATLinkedInAppearance.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Linkedin/CATLinkedInOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Linkedin/CATLinkedInOAuth.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Linkedin/CATLinkedInOAuth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Linkedin/CATLinkedInOAuth.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/MailRu/CATMailRuAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/MailRu/CATMailRuAppearance.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/MailRu/CATMailRuAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/MailRu/CATMailRuAppearance.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/MailRu/CATMailRuOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/MailRu/CATMailRuOAuth.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/MailRu/CATMailRuOAuth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/MailRu/CATMailRuOAuth.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/OK/CATOKAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/OK/CATOKAppearance.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/OK/CATOKAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/OK/CATOKAppearance.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/OK/CATOKOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/OK/CATOKOAuth.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/OK/CATOKOAuth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/OK/CATOKOAuth.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/VK/CATVKAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/VK/CATVKAppearance.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/VK/CATVKAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/VK/CATVKAppearance.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/VK/CATVKOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/VK/CATVKOAuth.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/VK/CATVKOAuth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/VK/CATVKOAuth.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Yandex/CATYandexOAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Yandex/CATYandexOAuth.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Yandex/CATYandexOAuth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Yandex/CATYandexOAuth.m -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Yandex/CATYanexAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Yandex/CATYanexAppearance.h -------------------------------------------------------------------------------- /Catamaran/Logic/SocialNetworks/Yandex/CATYanexAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/Logic/SocialNetworks/Yandex/CATYanexAppearance.m -------------------------------------------------------------------------------- /Catamaran/View/CATOAuthView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/View/CATOAuthView.h -------------------------------------------------------------------------------- /Catamaran/View/CATOAuthView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/View/CATOAuthView.m -------------------------------------------------------------------------------- /Catamaran/ViewController/CATOAuthController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/ViewController/CATOAuthController.h -------------------------------------------------------------------------------- /Catamaran/ViewController/CATOAuthController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Catamaran/ViewController/CATOAuthController.m -------------------------------------------------------------------------------- /Demo/CatamaranDemo/.idea/.name: -------------------------------------------------------------------------------- 1 | CatamaranDemo -------------------------------------------------------------------------------- /Demo/CatamaranDemo/.idea/CatamaranDemo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/.idea/CatamaranDemo.iml -------------------------------------------------------------------------------- /Demo/CatamaranDemo/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/.idea/encodings.xml -------------------------------------------------------------------------------- /Demo/CatamaranDemo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/.idea/misc.xml -------------------------------------------------------------------------------- /Demo/CatamaranDemo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/.idea/modules.xml -------------------------------------------------------------------------------- /Demo/CatamaranDemo/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/.idea/workspace.xml -------------------------------------------------------------------------------- /Demo/CatamaranDemo/.idea/xcode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/.idea/xcode.xml -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo.xcodeproj/project.xcworkspace/xcuserdata/alexandr.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo.xcodeproj/project.xcworkspace/xcuserdata/alexandr.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo.xcodeproj/xcuserdata/alexandr.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo.xcodeproj/xcuserdata/alexandr.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo.xcodeproj/xcuserdata/alexandr.xcuserdatad/xcschemes/CatamaranDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo.xcodeproj/xcuserdata/alexandr.xcuserdatad/xcschemes/CatamaranDemo.xcscheme -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo.xcodeproj/xcuserdata/alexandr.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo.xcodeproj/xcuserdata/alexandr.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo/CATDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo/CATDAppDelegate.h -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo/CATDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo/CATDAppDelegate.m -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo/CATDConfigurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo/CATDConfigurator.h -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo/CATDConfigurator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo/CATDConfigurator.m -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo/CATDOAuthsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo/CATDOAuthsController.h -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo/CATDOAuthsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo/CATDOAuthsController.m -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo/Info.plist -------------------------------------------------------------------------------- /Demo/CatamaranDemo/CatamaranDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/Demo/CatamaranDemo/CatamaranDemo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex601t/Catamaran/HEAD/README.md --------------------------------------------------------------------------------