├── .gitignore ├── .travis.yml ├── Dockerfile ├── License ├── Makefile ├── OS X development ├── .gitignore ├── Attribution ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ └── Private │ │ │ ├── Nimble │ │ │ ├── DSL.h │ │ │ ├── NMBExceptionCapture.h │ │ │ └── Nimble.h │ │ │ └── Quick │ │ │ ├── NSString+QCKSelectorName.h │ │ │ ├── QCKDSL.h │ │ │ ├── Quick.h │ │ │ ├── QuickConfiguration.h │ │ │ ├── QuickSpec.h │ │ │ ├── World+DSL.h │ │ │ └── World.h │ ├── Manifest.lock │ ├── Nimble │ │ ├── LICENSE.md │ │ ├── Nimble │ │ │ ├── Adapters │ │ │ │ ├── AdapterProtocols.swift │ │ │ │ ├── AssertionDispatcher.swift │ │ │ │ ├── AssertionRecorder.swift │ │ │ │ └── NimbleXCTestHandler.swift │ │ │ ├── DSL+Wait.swift │ │ │ ├── DSL.swift │ │ │ ├── Expectation.swift │ │ │ ├── Expression.swift │ │ │ ├── FailureMessage.swift │ │ │ ├── Matchers │ │ │ │ ├── AllPass.swift │ │ │ │ ├── BeAKindOf.swift │ │ │ │ ├── BeAnInstanceOf.swift │ │ │ │ ├── BeCloseTo.swift │ │ │ │ ├── BeEmpty.swift │ │ │ │ ├── BeGreaterThan.swift │ │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ │ ├── BeIdenticalTo.swift │ │ │ │ ├── BeLessThan.swift │ │ │ │ ├── BeLessThanOrEqual.swift │ │ │ │ ├── BeLogical.swift │ │ │ │ ├── BeNil.swift │ │ │ │ ├── BeginWith.swift │ │ │ │ ├── Contain.swift │ │ │ │ ├── EndWith.swift │ │ │ │ ├── Equal.swift │ │ │ │ ├── HaveCount.swift │ │ │ │ ├── Match.swift │ │ │ │ ├── MatcherProtocols.swift │ │ │ │ ├── RaisesException.swift │ │ │ │ └── ThrowError.swift │ │ │ ├── Nimble.h │ │ │ ├── ObjCExpectation.swift │ │ │ ├── Utils │ │ │ │ ├── Functional.swift │ │ │ │ ├── Poll.swift │ │ │ │ ├── SourceLocation.swift │ │ │ │ └── Stringers.swift │ │ │ ├── Wrappers │ │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ │ ├── MatcherFunc.swift │ │ │ │ └── ObjCMatcher.swift │ │ │ └── objc │ │ │ │ ├── DSL.h │ │ │ │ ├── DSL.m │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ └── NMBExceptionCapture.m │ │ └── README.md │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── Quick │ │ ├── LICENSE │ │ ├── Quick │ │ │ ├── Callsite.swift │ │ │ ├── Configuration │ │ │ │ ├── Configuration.swift │ │ │ │ ├── QuickConfiguration.h │ │ │ │ └── QuickConfiguration.m │ │ │ ├── DSL │ │ │ │ ├── DSL.swift │ │ │ │ ├── QCKDSL.h │ │ │ │ ├── QCKDSL.m │ │ │ │ ├── World+DSL.h │ │ │ │ └── World+DSL.swift │ │ │ ├── Example.swift │ │ │ ├── ExampleGroup.swift │ │ │ ├── ExampleMetadata.swift │ │ │ ├── Filter.swift │ │ │ ├── Hooks │ │ │ │ ├── Closures.swift │ │ │ │ ├── ExampleHooks.swift │ │ │ │ └── SuiteHooks.swift │ │ │ ├── NSString+QCKSelectorName.h │ │ │ ├── NSString+QCKSelectorName.m │ │ │ ├── Quick.h │ │ │ ├── QuickSpec.h │ │ │ ├── QuickSpec.m │ │ │ ├── World.h │ │ │ └── World.swift │ │ └── README.md │ └── Target Support Files │ │ ├── Nimble │ │ ├── Info.plist │ │ ├── Nimble-dummy.m │ │ ├── Nimble-prefix.pch │ │ ├── Nimble-umbrella.h │ │ ├── Nimble.modulemap │ │ └── Nimble.xcconfig │ │ ├── Pods │ │ ├── Info.plist │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-frameworks.sh │ │ ├── Pods-resources.sh │ │ ├── Pods-umbrella.h │ │ ├── Pods.debug.xcconfig │ │ ├── Pods.modulemap │ │ └── Pods.release.xcconfig │ │ └── Quick │ │ ├── Info.plist │ │ ├── Quick-dummy.m │ │ ├── Quick-prefix.pch │ │ ├── Quick-umbrella.h │ │ ├── Quick.modulemap │ │ └── Quick.xcconfig ├── PostgreSQL.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── PostgreSQL.xcscheme ├── PostgreSQL.xcworkspace │ └── contents.xcworkspacedata ├── Supporting Files │ ├── PostgreSQL Info.plist │ ├── PostgreSQL.h │ └── PostgreSQLTests Info.plist ├── docker-environment-variables.patch └── libpq.framework │ ├── Headers │ ├── Modules │ ├── Resources │ ├── Versions │ ├── A │ │ ├── Headers │ │ │ ├── libpq-fe.h │ │ │ ├── libpq.h │ │ │ ├── pg_config_ext.h │ │ │ └── postgres_ext.h │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── Resources │ │ │ └── Info.plist │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ └── libpq │ └── Current │ └── libpq ├── Package.swift ├── Readme.md ├── Sources ├── Byteswap.swift ├── Connection.swift ├── ConnectionParameters.swift ├── Database.swift ├── Parameter.swift ├── Query.swift ├── QueryResult.swift └── QueryResultRow.swift ├── Tests ├── ConnectionSpec.swift ├── DatabaseSpec.swift ├── QueryResultSpec.swift └── db │ ├── migrate.sql │ └── seed.sql └── docker-compose.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/Dockerfile -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/License -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/Makefile -------------------------------------------------------------------------------- /OS X development/.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata 2 | 3 | -------------------------------------------------------------------------------- /OS X development/Attribution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Attribution -------------------------------------------------------------------------------- /OS X development/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Podfile -------------------------------------------------------------------------------- /OS X development/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Podfile.lock -------------------------------------------------------------------------------- /OS X development/Pods/Headers/Private/Nimble/DSL.h: -------------------------------------------------------------------------------- 1 | ../../../Nimble/Nimble/objc/DSL.h -------------------------------------------------------------------------------- /OS X development/Pods/Headers/Private/Nimble/NMBExceptionCapture.h: -------------------------------------------------------------------------------- 1 | ../../../Nimble/Nimble/objc/NMBExceptionCapture.h -------------------------------------------------------------------------------- /OS X development/Pods/Headers/Private/Nimble/Nimble.h: -------------------------------------------------------------------------------- 1 | ../../../Nimble/Nimble/Nimble.h -------------------------------------------------------------------------------- /OS X development/Pods/Headers/Private/Quick/NSString+QCKSelectorName.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/NSString+QCKSelectorName.h -------------------------------------------------------------------------------- /OS X development/Pods/Headers/Private/Quick/QCKDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/DSL/QCKDSL.h -------------------------------------------------------------------------------- /OS X development/Pods/Headers/Private/Quick/Quick.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/Quick.h -------------------------------------------------------------------------------- /OS X development/Pods/Headers/Private/Quick/QuickConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /OS X development/Pods/Headers/Private/Quick/QuickSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/QuickSpec.h -------------------------------------------------------------------------------- /OS X development/Pods/Headers/Private/Quick/World+DSL.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/DSL/World+DSL.h -------------------------------------------------------------------------------- /OS X development/Pods/Headers/Private/Quick/World.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/World.h -------------------------------------------------------------------------------- /OS X development/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Manifest.lock -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/LICENSE.md -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Adapters/AssertionDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Adapters/AssertionDispatcher.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Adapters/NimbleXCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Adapters/NimbleXCTestHandler.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/DSL.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Expectation.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Expression.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/BeGreaterThanOrEqualTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/BeGreaterThanOrEqualTo.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/HaveCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/HaveCount.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Matchers/ThrowError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Matchers/ThrowError.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Nimble.h -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/ObjCExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/ObjCExpectation.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Utils/Poll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Utils/Poll.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Wrappers/AsyncMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Wrappers/AsyncMatcherWrapper.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Wrappers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Wrappers/MatcherFunc.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/Wrappers/ObjCMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/Wrappers/ObjCMatcher.swift -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/objc/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/objc/DSL.h -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/objc/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/objc/DSL.m -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/objc/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/objc/NMBExceptionCapture.h -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/Nimble/objc/NMBExceptionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/Nimble/objc/NMBExceptionCapture.m -------------------------------------------------------------------------------- /OS X development/Pods/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Nimble/README.md -------------------------------------------------------------------------------- /OS X development/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OS X development/Pods/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/LICENSE -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/Callsite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/Callsite.swift -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/Configuration/Configuration.swift -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/Configuration/QuickConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/Configuration/QuickConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/Configuration/QuickConfiguration.m -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/DSL/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/DSL/DSL.swift -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/DSL/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/DSL/QCKDSL.h -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/DSL/QCKDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/DSL/QCKDSL.m -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/DSL/World+DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/DSL/World+DSL.h -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/DSL/World+DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/DSL/World+DSL.swift -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/Example.swift -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/ExampleGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/ExampleGroup.swift -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/ExampleMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/ExampleMetadata.swift -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/Filter.swift -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/Hooks/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/Hooks/Closures.swift -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/Hooks/ExampleHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/Hooks/ExampleHooks.swift -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/Hooks/SuiteHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/Hooks/SuiteHooks.swift -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/NSString+QCKSelectorName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/NSString+QCKSelectorName.h -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/NSString+QCKSelectorName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/NSString+QCKSelectorName.m -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/Quick.h -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/QuickSpec.h -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/QuickSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/QuickSpec.m -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/World.h -------------------------------------------------------------------------------- /OS X development/Pods/Quick/Quick/World.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/Quick/World.swift -------------------------------------------------------------------------------- /OS X development/Pods/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Quick/README.md -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Nimble/Info.plist -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Nimble/Nimble-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Nimble/Nimble-dummy.m -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Nimble/Nimble-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Nimble/Nimble-prefix.pch -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Nimble/Nimble-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Nimble/Nimble-umbrella.h -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Nimble/Nimble.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Nimble/Nimble.modulemap -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Nimble/Nimble.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Nimble/Nimble.xcconfig -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Pods/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Pods/Info.plist -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Pods/Pods-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Pods/Pods-frameworks.sh -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Pods/Pods-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Pods/Pods-umbrella.h -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Pods/Pods.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Pods/Pods.modulemap -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Quick/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Quick/Info.plist -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Quick/Quick-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Quick/Quick-dummy.m -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Quick/Quick-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Quick/Quick-prefix.pch -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Quick/Quick-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Quick/Quick-umbrella.h -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Quick/Quick.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Quick/Quick.modulemap -------------------------------------------------------------------------------- /OS X development/Pods/Target Support Files/Quick/Quick.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Pods/Target Support Files/Quick/Quick.xcconfig -------------------------------------------------------------------------------- /OS X development/PostgreSQL.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/PostgreSQL.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OS X development/PostgreSQL.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/PostgreSQL.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OS X development/PostgreSQL.xcodeproj/xcshareddata/xcschemes/PostgreSQL.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/PostgreSQL.xcodeproj/xcshareddata/xcschemes/PostgreSQL.xcscheme -------------------------------------------------------------------------------- /OS X development/PostgreSQL.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/PostgreSQL.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OS X development/Supporting Files/PostgreSQL Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Supporting Files/PostgreSQL Info.plist -------------------------------------------------------------------------------- /OS X development/Supporting Files/PostgreSQL.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OS X development/Supporting Files/PostgreSQLTests Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/Supporting Files/PostgreSQLTests Info.plist -------------------------------------------------------------------------------- /OS X development/docker-environment-variables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/docker-environment-variables.patch -------------------------------------------------------------------------------- /OS X development/libpq.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /OS X development/libpq.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /OS X development/libpq.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /OS X development/libpq.framework/Versions/A/Headers/libpq-fe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/libpq.framework/Versions/A/Headers/libpq-fe.h -------------------------------------------------------------------------------- /OS X development/libpq.framework/Versions/A/Headers/libpq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/libpq.framework/Versions/A/Headers/libpq.h -------------------------------------------------------------------------------- /OS X development/libpq.framework/Versions/A/Headers/pg_config_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/libpq.framework/Versions/A/Headers/pg_config_ext.h -------------------------------------------------------------------------------- /OS X development/libpq.framework/Versions/A/Headers/postgres_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/libpq.framework/Versions/A/Headers/postgres_ext.h -------------------------------------------------------------------------------- /OS X development/libpq.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/libpq.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /OS X development/libpq.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/libpq.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /OS X development/libpq.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/libpq.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /OS X development/libpq.framework/Versions/A/libpq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/OS X development/libpq.framework/Versions/A/libpq -------------------------------------------------------------------------------- /OS X development/libpq.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /OS X development/libpq.framework/libpq: -------------------------------------------------------------------------------- 1 | Versions/Current/libpq -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/Package.swift -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/Readme.md -------------------------------------------------------------------------------- /Sources/Byteswap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/Sources/Byteswap.swift -------------------------------------------------------------------------------- /Sources/Connection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/Sources/Connection.swift -------------------------------------------------------------------------------- /Sources/ConnectionParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/Sources/ConnectionParameters.swift -------------------------------------------------------------------------------- /Sources/Database.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/Sources/Database.swift -------------------------------------------------------------------------------- /Sources/Parameter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/Sources/Parameter.swift -------------------------------------------------------------------------------- /Sources/Query.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/Sources/Query.swift -------------------------------------------------------------------------------- /Sources/QueryResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/Sources/QueryResult.swift -------------------------------------------------------------------------------- /Sources/QueryResultRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/Sources/QueryResultRow.swift -------------------------------------------------------------------------------- /Tests/ConnectionSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/Tests/ConnectionSpec.swift -------------------------------------------------------------------------------- /Tests/DatabaseSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/Tests/DatabaseSpec.swift -------------------------------------------------------------------------------- /Tests/QueryResultSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/Tests/QueryResultSpec.swift -------------------------------------------------------------------------------- /Tests/db/migrate.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE spec; 2 | -------------------------------------------------------------------------------- /Tests/db/seed.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stepanhruda/PostgreSQL-Swift/HEAD/docker-compose.yml --------------------------------------------------------------------------------