Skip to content

Commit 9e0cf56

Browse files
committed
Added CocoaPods support
1 parent 907e04c commit 9e0cf56

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

SQLiteAdapter.podspec

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'SQLiteAdapter'
3+
s.version = '0.1.1'
4+
s.homepage = 'https://github.com/denissimon/SQLiteAdapter'
5+
s.authors = { 'Denis Simon' => '[email protected]' }
6+
s.summary = 'A simple wrapper around SQLite3'
7+
s.license = { :type => 'MIT' }
8+
9+
s.swift_versions = ['5']
10+
s.ios.deployment_target = "9.0"
11+
s.osx.deployment_target = "10.10"
12+
s.watchos.deployment_target = "3.0"
13+
s.tvos.deployment_target = "10.0"
14+
s.source = { :git => 'https://github.com/denissimon/SQLiteAdapter.git', :tag => s.version.to_s }
15+
s.source_files = 'Sources/**/*.swift'
16+
s.frameworks = "Foundation"
17+
end

0 commit comments

Comments
 (0)