├── .gitattributes ├── .gitignore ├── .travis.yml ├── .yo-rc.json ├── CONTRIBUTING.md ├── README.md ├── generators ├── app │ └── index.js ├── carthage │ ├── index.js │ └── templates │ │ ├── Cartfile.private │ │ └── Cartfile.resolved ├── cocoapods │ ├── index.js │ └── templates │ │ └── PROJECT_NAME.podspec ├── contributing │ ├── index.js │ └── templates │ │ └── CONTRIBUTING.md ├── gitignore │ ├── index.js │ └── templates │ │ └── gitignore ├── license │ ├── index.js │ └── templates │ │ └── LICENSE ├── mobileprovision │ └── index.js ├── readme │ ├── index.js │ └── templates │ │ └── README.md ├── script │ ├── index.js │ └── templates │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── Makefile │ │ └── script │ │ ├── README.md │ │ └── cert ├── travis │ ├── index.js │ └── templates │ │ └── .travis.yml └── xcode │ ├── index.js │ └── templates │ ├── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift │ ├── PROJECT_NAME.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── PROJECT_NAME.xcscheme │ ├── PROJECT_NAME │ ├── Info.plist │ ├── PROJECT_NAME.h │ └── PROJECT_NAME.swift │ └── UnitTests │ ├── Info.plist │ └── UnitTests.swift ├── package.json └── test ├── test-app.js ├── test-carthage.js ├── test-cocoapods.js ├── test-contributing.js ├── test-gitignore.js ├── test-license.js ├── test-readme.js ├── test-script.js └── test-travis.js /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/README.md -------------------------------------------------------------------------------- /generators/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/app/index.js -------------------------------------------------------------------------------- /generators/carthage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/carthage/index.js -------------------------------------------------------------------------------- /generators/carthage/templates/Cartfile.private: -------------------------------------------------------------------------------- 1 | github "Quick/Nimble" "swift-2.0" 2 | -------------------------------------------------------------------------------- /generators/carthage/templates/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "Quick/Nimble" "930aab083cd4e2054faca10431929202dc807a07" 2 | -------------------------------------------------------------------------------- /generators/cocoapods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/cocoapods/index.js -------------------------------------------------------------------------------- /generators/cocoapods/templates/PROJECT_NAME.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/cocoapods/templates/PROJECT_NAME.podspec -------------------------------------------------------------------------------- /generators/contributing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/contributing/index.js -------------------------------------------------------------------------------- /generators/contributing/templates/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/contributing/templates/CONTRIBUTING.md -------------------------------------------------------------------------------- /generators/gitignore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/gitignore/index.js -------------------------------------------------------------------------------- /generators/gitignore/templates/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/gitignore/templates/gitignore -------------------------------------------------------------------------------- /generators/license/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/license/index.js -------------------------------------------------------------------------------- /generators/license/templates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/license/templates/LICENSE -------------------------------------------------------------------------------- /generators/mobileprovision/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/mobileprovision/index.js -------------------------------------------------------------------------------- /generators/readme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/readme/index.js -------------------------------------------------------------------------------- /generators/readme/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/readme/templates/README.md -------------------------------------------------------------------------------- /generators/script/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/script/index.js -------------------------------------------------------------------------------- /generators/script/templates/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/script/templates/Gemfile -------------------------------------------------------------------------------- /generators/script/templates/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/script/templates/Gemfile.lock -------------------------------------------------------------------------------- /generators/script/templates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/script/templates/Makefile -------------------------------------------------------------------------------- /generators/script/templates/script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/script/templates/script/README.md -------------------------------------------------------------------------------- /generators/script/templates/script/cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/script/templates/script/cert -------------------------------------------------------------------------------- /generators/travis/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/travis/index.js -------------------------------------------------------------------------------- /generators/travis/templates/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/travis/templates/.travis.yml -------------------------------------------------------------------------------- /generators/xcode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/xcode/index.js -------------------------------------------------------------------------------- /generators/xcode/templates/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/xcode/templates/Example/AppDelegate.swift -------------------------------------------------------------------------------- /generators/xcode/templates/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/xcode/templates/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /generators/xcode/templates/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/xcode/templates/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /generators/xcode/templates/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/xcode/templates/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /generators/xcode/templates/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/xcode/templates/Example/Info.plist -------------------------------------------------------------------------------- /generators/xcode/templates/Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/xcode/templates/Example/ViewController.swift -------------------------------------------------------------------------------- /generators/xcode/templates/PROJECT_NAME.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/xcode/templates/PROJECT_NAME.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /generators/xcode/templates/PROJECT_NAME.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/xcode/templates/PROJECT_NAME.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /generators/xcode/templates/PROJECT_NAME.xcodeproj/xcshareddata/xcschemes/PROJECT_NAME.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/xcode/templates/PROJECT_NAME.xcodeproj/xcshareddata/xcschemes/PROJECT_NAME.xcscheme -------------------------------------------------------------------------------- /generators/xcode/templates/PROJECT_NAME/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/xcode/templates/PROJECT_NAME/Info.plist -------------------------------------------------------------------------------- /generators/xcode/templates/PROJECT_NAME/PROJECT_NAME.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/xcode/templates/PROJECT_NAME/PROJECT_NAME.h -------------------------------------------------------------------------------- /generators/xcode/templates/PROJECT_NAME/PROJECT_NAME.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/xcode/templates/PROJECT_NAME/PROJECT_NAME.swift -------------------------------------------------------------------------------- /generators/xcode/templates/UnitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/xcode/templates/UnitTests/Info.plist -------------------------------------------------------------------------------- /generators/xcode/templates/UnitTests/UnitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/generators/xcode/templates/UnitTests/UnitTests.swift -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/package.json -------------------------------------------------------------------------------- /test/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/test/test-app.js -------------------------------------------------------------------------------- /test/test-carthage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/test/test-carthage.js -------------------------------------------------------------------------------- /test/test-cocoapods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/test/test-cocoapods.js -------------------------------------------------------------------------------- /test/test-contributing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/test/test-contributing.js -------------------------------------------------------------------------------- /test/test-gitignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/test/test-gitignore.js -------------------------------------------------------------------------------- /test/test-license.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/test/test-license.js -------------------------------------------------------------------------------- /test/test-readme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/test/test-readme.js -------------------------------------------------------------------------------- /test/test-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/test/test-script.js -------------------------------------------------------------------------------- /test/test-travis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertk/generator-swift-framework/HEAD/test/test-travis.js --------------------------------------------------------------------------------