forked from shoheiyokoyama/Gemini
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemini.podspec
22 lines (18 loc) · 1.02 KB
/
Gemini.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'Gemini'
s.version = '1.4.0'
s.summary = 'Gemini is rich scroll animation framework for iOS, written in Swift.'
s.description = <<-DESC
Gemini is rich scroll animation framework for iOS, written in Swift.
You can easily use GeminiCollectionView, which is a subclass of UICollectionView.
You are available multiple animation which has various and customizable properties, and moreover can create your own custom scroll animation.
Gemini also provide a fluent interface based on method chaining. you can use this intuitively and simply.
DESC
s.homepage = 'https://github.com/shoheiyokoyama/Gemini'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'shoheiyokoyama' => '[email protected]' }
s.source = { :git => 'https://github.com/shoheiyokoyama/Gemini.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'Gemini/**/*'
s.swift_version = '5.0'
end