├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGES.md ├── LICENSE.txt ├── NOTICES.txt ├── README.md ├── app ├── .gitignore └── index.js ├── config.json ├── lib ├── actions.js ├── handlebars.js └── helpers.js ├── model └── index.js ├── package.json ├── property └── index.js ├── refresh ├── index.js └── templates │ ├── bluemix │ └── README.md │ ├── common │ ├── Application.swift │ ├── ErrorRoutes.swift │ ├── HealthRoutes.swift │ ├── InitializationError.swift │ ├── LICENSE_for_generated_code │ ├── LinuxMain.swift │ ├── Logging.swift │ ├── Metrics.swift │ ├── NOTICES_for_generated_swaggerui │ ├── Package.swift │ ├── README.scaffold.md │ ├── RouteTests.swift │ ├── SwaggerRoutes.swift │ ├── apic-node-wrapper.js │ ├── gitignore │ ├── iterative-dev.sh │ ├── main.swift │ ├── productSwagger.yaml │ ├── swagger-ui │ │ ├── css │ │ │ ├── print.css │ │ │ ├── reset.css │ │ │ ├── screen.css │ │ │ ├── style.css │ │ │ └── typography.css │ │ ├── fonts │ │ │ ├── DroidSans-Bold.ttf │ │ │ └── DroidSans.ttf │ │ ├── images │ │ │ ├── collapse.gif │ │ │ ├── expand.gif │ │ │ ├── explorer_icons.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── logo_small.png │ │ │ ├── pet_store_api.png │ │ │ ├── throbber.gif │ │ │ └── wordnik_api.png │ │ ├── index.html │ │ ├── lang │ │ │ ├── ca.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── fr.js │ │ │ ├── geo.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ko-kr.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ru.js │ │ │ ├── tr.js │ │ │ ├── translator.js │ │ │ └── zh-cn.js │ │ ├── lib │ │ │ ├── backbone-min.js │ │ │ ├── es5-shim.js │ │ │ ├── handlebars-4.0.5.js │ │ │ ├── highlight.9.1.0.pack.js │ │ │ ├── highlight.9.1.0.pack_extended.js │ │ │ ├── jquery-1.8.0.min.js │ │ │ ├── jquery.ba-bbq.min.js │ │ │ ├── jquery.slideto.min.js │ │ │ ├── jquery.wiggle.min.js │ │ │ ├── js-yaml.min.js │ │ │ ├── jsoneditor.min.js │ │ │ ├── lodash.min.js │ │ │ ├── marked.js │ │ │ ├── object-assign-pollyfill.js │ │ │ ├── sanitize-html.min.js │ │ │ └── swagger-oauth.js │ │ ├── o2c.html │ │ ├── swagger-ui.js │ │ └── swagger-ui.min.js │ └── swift-version │ ├── crud │ ├── Adapter.swift │ ├── AdapterError.swift │ ├── AdapterFactory.swift │ ├── CRUDResources.swift │ ├── CloudantAdapter.swift │ ├── MemoryAdapter.swift │ ├── Model.swift │ ├── ModelError.swift │ └── Resource.swift │ ├── fromswagger │ ├── Model.swift.hbs │ └── Routes.swift.hbs │ └── public │ ├── 404.html │ ├── 500.html │ ├── css │ └── default.css │ ├── images │ ├── 404.svg │ ├── arrow-right.png │ └── cloud-header.png │ └── index.html ├── release.sh ├── review.sh └── test ├── integration ├── app │ ├── prompted_build.js │ ├── prompted_nobuild.js │ └── spec_build.js ├── model │ └── prompted_nobuild.js └── property │ └── prompted_nobuild.js ├── lib └── common_test.js ├── mocha.opts ├── resources ├── dummy_PackageSDK.zip ├── dummy_ServerSDK.zip ├── dummy_iOS_SDK.zip ├── invalid_swagger.json ├── person_dino.json ├── petstore.yaml ├── petstore2.yaml ├── petstore2.yml ├── productSwagger.yaml └── unsupported_bluemix.json └── unit ├── app.js ├── helpers.js ├── model.js ├── property.js ├── refresh.js └── validators.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/NOTICES.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/app/index.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/config.json -------------------------------------------------------------------------------- /lib/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/lib/actions.js -------------------------------------------------------------------------------- /lib/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/lib/handlebars.js -------------------------------------------------------------------------------- /lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/lib/helpers.js -------------------------------------------------------------------------------- /model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/model/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/package.json -------------------------------------------------------------------------------- /property/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/property/index.js -------------------------------------------------------------------------------- /refresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/index.js -------------------------------------------------------------------------------- /refresh/templates/bluemix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/bluemix/README.md -------------------------------------------------------------------------------- /refresh/templates/common/Application.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/Application.swift -------------------------------------------------------------------------------- /refresh/templates/common/ErrorRoutes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/ErrorRoutes.swift -------------------------------------------------------------------------------- /refresh/templates/common/HealthRoutes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/HealthRoutes.swift -------------------------------------------------------------------------------- /refresh/templates/common/InitializationError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/InitializationError.swift -------------------------------------------------------------------------------- /refresh/templates/common/LICENSE_for_generated_code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/LICENSE_for_generated_code -------------------------------------------------------------------------------- /refresh/templates/common/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/LinuxMain.swift -------------------------------------------------------------------------------- /refresh/templates/common/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/Logging.swift -------------------------------------------------------------------------------- /refresh/templates/common/Metrics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/Metrics.swift -------------------------------------------------------------------------------- /refresh/templates/common/NOTICES_for_generated_swaggerui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/NOTICES_for_generated_swaggerui -------------------------------------------------------------------------------- /refresh/templates/common/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/Package.swift -------------------------------------------------------------------------------- /refresh/templates/common/README.scaffold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/README.scaffold.md -------------------------------------------------------------------------------- /refresh/templates/common/RouteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/RouteTests.swift -------------------------------------------------------------------------------- /refresh/templates/common/SwaggerRoutes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/SwaggerRoutes.swift -------------------------------------------------------------------------------- /refresh/templates/common/apic-node-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/apic-node-wrapper.js -------------------------------------------------------------------------------- /refresh/templates/common/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/gitignore -------------------------------------------------------------------------------- /refresh/templates/common/iterative-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/iterative-dev.sh -------------------------------------------------------------------------------- /refresh/templates/common/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/main.swift -------------------------------------------------------------------------------- /refresh/templates/common/productSwagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/productSwagger.yaml -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/css/print.css -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/css/reset.css -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/css/screen.css -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/css/style.css -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/css/typography.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/fonts/DroidSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/fonts/DroidSans-Bold.ttf -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/images/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/images/collapse.gif -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/images/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/images/expand.gif -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/images/explorer_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/images/explorer_icons.png -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/images/favicon-16x16.png -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/images/favicon-32x32.png -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/images/favicon.ico -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/images/logo_small.png -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/images/pet_store_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/images/pet_store_api.png -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/images/throbber.gif -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/images/wordnik_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/images/wordnik_api.png -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/index.html -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lang/ca.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lang/el.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lang/en.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lang/es.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lang/fr.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lang/geo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lang/geo.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lang/it.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lang/ja.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lang/ko-kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lang/ko-kr.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lang/pl.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lang/pt.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lang/ru.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lang/tr.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lang/translator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lang/translator.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lang/zh-cn.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/backbone-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/backbone-min.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/es5-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/es5-shim.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/handlebars-4.0.5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/handlebars-4.0.5.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/highlight.9.1.0.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/highlight.9.1.0.pack.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/highlight.9.1.0.pack_extended.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/highlight.9.1.0.pack_extended.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/jquery-1.8.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/jquery-1.8.0.min.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/jquery.ba-bbq.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/jquery.ba-bbq.min.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/jquery.slideto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/jquery.slideto.min.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/jquery.wiggle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/jquery.wiggle.min.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/js-yaml.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/js-yaml.min.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/jsoneditor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/jsoneditor.min.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/lodash.min.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/marked.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/object-assign-pollyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/object-assign-pollyfill.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/sanitize-html.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/sanitize-html.min.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/lib/swagger-oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/lib/swagger-oauth.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/o2c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/o2c.html -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/swagger-ui.js -------------------------------------------------------------------------------- /refresh/templates/common/swagger-ui/swagger-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/common/swagger-ui/swagger-ui.min.js -------------------------------------------------------------------------------- /refresh/templates/common/swift-version: -------------------------------------------------------------------------------- 1 | 5.0.1 2 | -------------------------------------------------------------------------------- /refresh/templates/crud/Adapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/crud/Adapter.swift -------------------------------------------------------------------------------- /refresh/templates/crud/AdapterError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/crud/AdapterError.swift -------------------------------------------------------------------------------- /refresh/templates/crud/AdapterFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/crud/AdapterFactory.swift -------------------------------------------------------------------------------- /refresh/templates/crud/CRUDResources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/crud/CRUDResources.swift -------------------------------------------------------------------------------- /refresh/templates/crud/CloudantAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/crud/CloudantAdapter.swift -------------------------------------------------------------------------------- /refresh/templates/crud/MemoryAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/crud/MemoryAdapter.swift -------------------------------------------------------------------------------- /refresh/templates/crud/Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/crud/Model.swift -------------------------------------------------------------------------------- /refresh/templates/crud/ModelError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/crud/ModelError.swift -------------------------------------------------------------------------------- /refresh/templates/crud/Resource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/crud/Resource.swift -------------------------------------------------------------------------------- /refresh/templates/fromswagger/Model.swift.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/fromswagger/Model.swift.hbs -------------------------------------------------------------------------------- /refresh/templates/fromswagger/Routes.swift.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/fromswagger/Routes.swift.hbs -------------------------------------------------------------------------------- /refresh/templates/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/public/404.html -------------------------------------------------------------------------------- /refresh/templates/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/public/500.html -------------------------------------------------------------------------------- /refresh/templates/public/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/public/css/default.css -------------------------------------------------------------------------------- /refresh/templates/public/images/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/public/images/404.svg -------------------------------------------------------------------------------- /refresh/templates/public/images/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/public/images/arrow-right.png -------------------------------------------------------------------------------- /refresh/templates/public/images/cloud-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/public/images/cloud-header.png -------------------------------------------------------------------------------- /refresh/templates/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/refresh/templates/public/index.html -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/release.sh -------------------------------------------------------------------------------- /review.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/review.sh -------------------------------------------------------------------------------- /test/integration/app/prompted_build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/integration/app/prompted_build.js -------------------------------------------------------------------------------- /test/integration/app/prompted_nobuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/integration/app/prompted_nobuild.js -------------------------------------------------------------------------------- /test/integration/app/spec_build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/integration/app/spec_build.js -------------------------------------------------------------------------------- /test/integration/model/prompted_nobuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/integration/model/prompted_nobuild.js -------------------------------------------------------------------------------- /test/integration/property/prompted_nobuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/integration/property/prompted_nobuild.js -------------------------------------------------------------------------------- /test/lib/common_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/lib/common_test.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --timeout 40000 2 | -------------------------------------------------------------------------------- /test/resources/dummy_PackageSDK.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/resources/dummy_PackageSDK.zip -------------------------------------------------------------------------------- /test/resources/dummy_ServerSDK.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/resources/dummy_ServerSDK.zip -------------------------------------------------------------------------------- /test/resources/dummy_iOS_SDK.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/resources/dummy_iOS_SDK.zip -------------------------------------------------------------------------------- /test/resources/invalid_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/resources/invalid_swagger.json -------------------------------------------------------------------------------- /test/resources/person_dino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/resources/person_dino.json -------------------------------------------------------------------------------- /test/resources/petstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/resources/petstore.yaml -------------------------------------------------------------------------------- /test/resources/petstore2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/resources/petstore2.yaml -------------------------------------------------------------------------------- /test/resources/petstore2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/resources/petstore2.yml -------------------------------------------------------------------------------- /test/resources/productSwagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/resources/productSwagger.yaml -------------------------------------------------------------------------------- /test/resources/unsupported_bluemix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/resources/unsupported_bluemix.json -------------------------------------------------------------------------------- /test/unit/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/unit/app.js -------------------------------------------------------------------------------- /test/unit/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/unit/helpers.js -------------------------------------------------------------------------------- /test/unit/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/unit/model.js -------------------------------------------------------------------------------- /test/unit/property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/unit/property.js -------------------------------------------------------------------------------- /test/unit/refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/unit/refresh.js -------------------------------------------------------------------------------- /test/unit/validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM-Swift/generator-swiftserver/HEAD/test/unit/validators.js --------------------------------------------------------------------------------