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

Commit

Permalink
Merge pull request #31 from pocketpixels/master
Browse files Browse the repository at this point in the history
First draft for a CocoaPods spec
  • Loading branch information
groue authored Feb 14, 2020
2 parents 9247c9a + cbebf9e commit 051cfab
Showing 1 changed file with 22 additions and 0 deletions.
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

0 comments on commit 051cfab

Please sign in to comment.