-
Notifications
You must be signed in to change notification settings - Fork 1
/
SwiftChinese.podspec
26 lines (21 loc) · 1.02 KB
/
SwiftChinese.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.new do |s|
s.name = 'SwiftChinese'
s.version = '0.1.6'
s.summary = 'Core Data framework for translating between Chinese and English with local CC-CEDICT Core Data store'
s.description = <<-DESC
Core Data framework for translating between Chinese and English with local CC-CEDICT Core Data store.
DESC
s.homepage = 'https://github.com/niklasberglund/SwiftChinese'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = {
"Niklas Berglund" => "[email protected]"
}
s.source = { :git => 'https://github.com/niklasberglund/SwiftChinese.git', :tag => 'v0.1.6-alpha' }
s.dependency 'SwiftyHash'
s.dependency 'SSZipArchive'
s.ios.frameworks = 'UIKit'
s.requires_arc = true
s.ios.deployment_target = '8.3'
s.source_files = 'SwiftChinese/SwiftChinese/**/*.{h,swift}'
s.resources = ['SwiftChinese/SwiftChinese/DictionaryModel.xcdatamodeld', 'SwiftChinese/SwiftChinese/DictionaryModel.sqlite']
end