Skip to content
This repository has been archived by the owner on Jun 30, 2020. It is now read-only.

Support for CocoaPods #31

Merged
merged 1 commit into from
Feb 14, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions GRDBCombine.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Pod::Spec.new do |s|
s.name = 'GRDBCombine'
s.version = '0.7.1'

s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'A set of extensions for SQLite, GRDB.swift, and Combine'
s.homepage = 'https://github.com/groue/GRDBCombine'
s.author = { 'Gwendal Roué' => '[email protected]' }
s.source = { :git => 'https://github.com/groue/GRDBCombine', :tag => "v#{s.version}" }
s.module_name = 'GRDBCombine'

s.swift_versions = ['5.0']
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.watchos.deployment_target = '6.0'
s.tvos.deployment_target = '13.0'

s.framework = 'Combine'
s.source_files = 'Sources/GRDBCombine/*.swift'
s.dependency 'GRDB.swift', '~> 4.1'

end