├── .gitignore ├── LICENSE ├── README.md ├── bin ├── test └── test-config.yml ├── circle.yml ├── cookiecutter.json ├── hooks └── post_gen_project.sh └── {{ cookiecutter.project_name }} ├── .gitattributes ├── .gitignore ├── .vimrc ├── Cartfile ├── Cartfile.private ├── Gemfile ├── README.md ├── Sources ├── .gitkeep ├── Controllers │ ├── .gitkeep │ └── AppDelegate.swift ├── Extensions │ └── .gitkeep ├── Models │ └── .gitkeep ├── Protocols │ └── .gitkeep ├── Resources │ ├── .gitkeep │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Nibs │ │ ├── .gitkeep │ │ └── LaunchScreen.xib │ ├── Other-Sources │ │ ├── .gitkeep │ │ └── Info.plist │ └── Storyboards │ │ ├── .gitkeep │ │ └── Main.storyboard ├── ViewModels │ └── .gitkeep └── Views │ └── .gitkeep ├── Tests ├── .gitkeep ├── Helpers │ └── .gitkeep ├── Resources │ ├── .gitkeep │ └── Info.plist └── Tests │ ├── .gitkeep │ └── SampleSpec.swift ├── bin ├── bootstrap ├── bootstrap-if-needed ├── setup ├── test └── update ├── circle.yml └── {{ cookiecutter.project_name }}.xcodeproj ├── project.pbxproj ├── project.xcworkspace └── contents.xcworkspacedata └── xcshareddata └── xcschemes └── {{ cookiecutter.project_name }}.xcscheme /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/README.md -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/bin/test -------------------------------------------------------------------------------- /bin/test-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/bin/test-config.yml -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/circle.yml -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /hooks/post_gen_project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/hooks/post_gen_project.sh -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj merge=union 2 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/.gitignore -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/.vimrc -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Cartfile: -------------------------------------------------------------------------------- 1 | github "thoughtbot/Argo" ~> 4.0 2 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/Cartfile.private -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "xcpretty" 4 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/README.md -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/Controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/Controllers/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/Sources/Controllers/AppDelegate.swift -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/Extensions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/Protocols/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/Resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/Resources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/Sources/Resources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/Resources/Nibs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/Resources/Nibs/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/Sources/Resources/Nibs/LaunchScreen.xib -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/Resources/Other-Sources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/Resources/Other-Sources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/Sources/Resources/Other-Sources/Info.plist -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/Resources/Storyboards/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/Resources/Storyboards/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/Sources/Resources/Storyboards/Main.storyboard -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/ViewModels/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Sources/Views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Tests/Helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Tests/Resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Tests/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/Tests/Resources/Info.plist -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Tests/Tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Tests/Tests/SampleSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/Tests/Tests/SampleSpec.swift -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/bin/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/bin/bootstrap -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/bin/bootstrap-if-needed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/bin/bootstrap-if-needed -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/bin/setup -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/bin/test -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/bin/update -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/circle.yml -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}.xcodeproj/xcshareddata/xcschemes/{{ cookiecutter.project_name }}.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/ios-template/HEAD/{{ cookiecutter.project_name }}/{{ cookiecutter.project_name }}.xcodeproj/xcshareddata/xcschemes/{{ cookiecutter.project_name }}.xcscheme --------------------------------------------------------------------------------