You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Documentation/Index.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,18 +125,18 @@ install SQLite.swift with Carthage:
125
125
If you want to use a more recent version of SQLite than what is provided with the OS you can require the `standalone` subspec:
126
126
127
127
``` ruby
128
-
target 'YourAppTargetName' do
129
-
pod 'SQLite.swift/standalone', '~> 0.11.1'
130
-
end
128
+
target 'YourAppTargetName' do
129
+
pod 'SQLite.swift/standalone', '~> 0.11.1'
130
+
end
131
131
```
132
132
133
133
By default this will use the most recent version of SQLite without any extras. If you want you can further customize this by adding another dependency to sqlite3 or one of its subspecs:
134
134
135
135
```ruby
136
-
target 'YourAppTargetName'do
137
-
pod 'SQLite.swift/standalone', '~> 0.11.1'
138
-
pod 'sqlite3/fts5', '= 3.15.0'# SQLite 3.15.0 with FTS5 enabled
139
-
end
136
+
target 'YourAppTargetName'do
137
+
pod 'SQLite.swift/standalone', '~> 0.11.1'
138
+
pod 'sqlite3/fts5', '= 3.15.0'# SQLite 3.15.0 with FTS5 enabled
139
+
end
140
140
```
141
141
142
142
See the [sqlite3 podspec][sqlite3pod] for more details.
@@ -147,9 +147,9 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the `SQLCiphe
147
147
subspec in your Podfile:
148
148
149
149
```ruby
150
-
target 'YourAppTargetName'do
151
-
pod 'SQLite.swift/SQLCipher', '~> 0.11.1'
152
-
end
150
+
target 'YourAppTargetName'do
151
+
pod 'SQLite.swift/SQLCipher', '~> 0.11.1'
152
+
end
153
153
```
154
154
155
155
This will automatically add a dependency to the SQLCipher pod as well as extend
0 commit comments