-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #314 from stephencelis/publicpod
Prep for public release to CocoaPods
- Loading branch information
Showing
67 changed files
with
508 additions
and
1,552 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,23 @@ | ||
# OS X | ||
.DS_Store | ||
|
||
# Xcode | ||
build/ | ||
timeline.xctimeline | ||
xcuserdata/ | ||
|
||
# System | ||
.DS_Store | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
xcuserdata | ||
*.xccheckout | ||
*.moved-aside | ||
DerivedData | ||
*.hmap | ||
*.ipa | ||
*.xcuserstate | ||
|
||
# Carthage | ||
Carthage/ | ||
Carthage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
[submodule "sqlcipher"] | ||
path = Vendor/sqlcipher | ||
url = https://github.com/sqlcipher/sqlcipher.git | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,33 @@ | ||
$LOAD_PATH << '.' | ||
require 'Supporting Files/podspec.rb' | ||
# | ||
# `pod lib lint SQLite.swift.podspec' fails - see | ||
# https://github.com/CocoaPods/CocoaPods/issues/4607 | ||
# | ||
|
||
Pod::Spec.new do |spec| | ||
spec.name = 'SQLite.swift' | ||
spec.summary = 'A type-safe, Swift-language layer over SQLite3.' | ||
Pod::Spec.new do |s| | ||
s.name = "SQLite.swift" | ||
s.version = "0.9.0" | ||
s.summary = "A type-safe, Swift-language layer over SQLite3 for iOS and OS X." | ||
|
||
spec.description = <<-DESC | ||
s.description = <<-DESC | ||
SQLite.swift provides compile-time confidence in SQL statement syntax and | ||
intent. | ||
DESC | ||
DESC | ||
|
||
apply_shared_config spec, 'SQLite' | ||
s.homepage = "https://github.com/stephencelis/SQLite.swift" | ||
s.license = 'MIT' | ||
s.author = { "Stephen Celis" => "[email protected]" } | ||
s.source = { :git => "https://github.com/stephencelis/SQLite.swift.git", :tag => s.version.to_s } | ||
s.social_media_url = 'https://twitter.com/stephencelis' | ||
|
||
s.module_name = 'SQLite' | ||
s.module_map = 'module.modulemap' | ||
s.ios.deployment_target = "8.0" | ||
|
||
s.source_files = 'SQLite/**/*' | ||
|
||
# make the sqlite3 C library behave like a module | ||
s.libraries = 'sqlite3' | ||
s.xcconfig = { 'SWIFT_INCLUDE_PATHS' => '${PODS_ROOT}/SQLite.swift/SQLite3' } | ||
s.preserve_path = 'SQLite3/*' | ||
|
||
spec.exclude_files = 'Source/Cipher/Cipher.swift' | ||
spec.library = 'sqlite3' | ||
end |
Oops, something went wrong.