-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSimpleImageSlider.podspec
More file actions
17 lines (15 loc) · 956 Bytes
/
SimpleImageSlider.podspec
File metadata and controls
17 lines (15 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = 'SimpleImageSlider'
s.version = '3.1.0'
s.summary = 'SimpleImageSlider is a simple view that creates a scrollable gallery of images.'
s.description = <<-DESC
SimpleImageSlider is a simple image gallery view that allows a user to scroll horizontally through an array of images. Great for collection view and table view headers, or anywhere you need an image gallery!
DESC
s.homepage = 'https://github.com/christianhatch/SimpleImageSlider'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Christian Hatch' => 'christianhatch@gmail.com' }
s.source = { :git => 'https://github.com/christianhatch/SimpleImageSlider.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/commodoreftp'
s.ios.deployment_target = '12.4'
s.source_files = 'Sources/SimpleImageSlider/**/*'
end