-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEdamame.podspec
More file actions
23 lines (23 loc) · 863 Bytes
/
Edamame.podspec
File metadata and controls
23 lines (23 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# Be sure to run `pod lib lint Edamame.podspec' to ensure this is a
# valid spec before submitting.
#
Pod::Spec.new do |s|
s.name = "Edamame"
s.version = "1.4.0"
s.summary = "Edamame makes UICollectionView easy to use."
s.description = <<-DESC
Edamame supports followings.
- Easily specify Cell class based on section or each cell.
- Culclate cell size in background thread. (yet)
- You can use original layout.
DESC
s.homepage = "https://github.com/Matzo/Edamame"
s.license = 'MIT'
s.author = { "Matzo" => "ksk.matsuo@gmail.com" }
s.source = { :git => "https://github.com/Matzo/Edamame.git", :tag => s.version.to_s }
s.platform = :ios, '10.0'
s.requires_arc = true
s.swift_version = "4.2"
s.source_files = 'Pod/Classes/**/*'
end