Skip to content

Commit

Permalink
Merge pull request #11 from hugehoge/support-cocoapods
Browse files Browse the repository at this point in the history
CocoaPods support
  • Loading branch information
hugehoge authored Jan 11, 2022
2 parents 6c4b23a + b7316e1 commit 99bcdc3
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Changelog

### Feature

- CocoaPods support [#11](https://github.com/hugehoge/Snappable/pull/11)

### Changed

- Swift 5.3 support [#8](https://github.com/hugehoge/Snappable/pull/8), [#9](https://github.com/hugehoge/Snappable/pull/9)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Snappable
===

[![](https://img.shields.io/github/v/release/hugehoge/Snappable)](https://github.com/hugehoge/Snappable/releases/latest)
[![](https://img.shields.io/cocoapods/v/Snappable.svg)](https://cocoapods.org/pods/Snappable)
[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fhugehoge%2FSnappable%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/hugehoge/Snappable)
[![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fhugehoge%2FSnappable%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/hugehoge/Snappable)

Expand Down
15 changes: 15 additions & 0 deletions Snappable.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Pod::Spec.new do |s|
s.name = 'Snappable'
s.version = '0.1.1'
s.summary = 'A set of SwiftUI custom modifiers to make the ScrollView snappable.'
s.description = 'A set of SwiftUI custom modifiers to make the ScrollView snappable. The goal of this library is to provide an easy way to implement Views such as carousels and slideshows.'
s.homepage = 'https://github.com/hugehoge/Snappable'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'hugehoge' => '[email protected]' }
s.source = { :git => 'https://github.com/hugehoge/Snappable.git', :tag => s.version.to_s }
s.ios.deployment_target = '14.0'
s.swift_versions = ['5.3', '5.4', '5.5']
s.source_files = 'Sources/**/*.swift'

s.dependency 'Introspect', '~> 0.1.3'
end

0 comments on commit 99bcdc3

Please sign in to comment.