-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
* audio file update, etc * internationalization * video working * ipa practice * SQLite.swift * learn, practice and test * Version 2.0.0 final fixes and clean up
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github "stephencelis/SQLite.swift" ~> 0.11.4 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github "stephencelis/SQLite.swift" "0.11.4" |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
additional_guides: | ||
- Documentation/Index.md |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
> Issues are used to track bugs and feature requests. | ||
> Need help or have a general question? Ask on Stack Overflow (tag sqlite.swift). | ||
## Build Information | ||
|
||
- Include the SQLite.swift version, commit or branch experiencing the issue. | ||
- Mention Xcode and OS X versions affected. | ||
- How do do you integrate SQLite.swift in your project? | ||
- manual | ||
- CocoaPods | ||
- Carthage | ||
- Swift Package manager | ||
|
||
## General guidelines | ||
|
||
- Be as descriptive as possible. | ||
- Provide as much information needed to _reliably reproduce_ the issue. | ||
- Attach screenshots if possible. | ||
- Better yet: attach GIFs or link to video. | ||
- Even better: link to a sample project exhibiting the issue. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# OS X | ||
.DS_Store | ||
|
||
# Xcode | ||
build/ | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
xcuserdata | ||
*.xccheckout | ||
*.moved-aside | ||
DerivedData | ||
*.hmap | ||
*.ipa | ||
*.xcuserstate | ||
|
||
# Carthage | ||
/Carthage/ | ||
|
||
# Swift Package Manager | ||
.build | ||
Packages/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
4.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
language: objective-c | ||
rvm: 2.3 | ||
osx_image: xcode9 | ||
env: | ||
global: | ||
- IOS_SIMULATOR="iPhone 6s" | ||
- IOS_VERSION="11.0" | ||
matrix: | ||
include: | ||
- env: BUILD_SCHEME="SQLite iOS" | ||
- env: BUILD_SCHEME="SQLite Mac" | ||
- env: VALIDATOR_SUBSPEC="none" | ||
- env: VALIDATOR_SUBSPEC="standard" | ||
- env: VALIDATOR_SUBSPEC="standalone" | ||
- env: VALIDATOR_SUBSPEC="SQLCipher" | ||
- env: CARTHAGE_PLATFORM="iOS" | ||
- env: CARTHAGE_PLATFORM="Mac" | ||
- env: CARTHAGE_PLATFORM="watchOS" | ||
- env: CARTHAGE_PLATFORM="tvOS" | ||
- env: PACKAGE_MANAGER_COMMAND="test" | ||
before_install: | ||
- gem update bundler | ||
- gem install xcpretty --no-document | ||
- brew update | ||
- brew outdated carthage || brew upgrade carthage | ||
script: | ||
- ./run-tests.sh |