-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathGraphene.podspec
More file actions
24 lines (24 loc) · 1017 Bytes
/
Graphene.podspec
File metadata and controls
24 lines (24 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'Graphene'
s.version = '1.2.0'
s.summary = 'Graphene is an implementation of Graphene Blockchain protocol in Objective-C.'
s.description = <<-DESC
Graphene is a toolkit to work with Graphene blockchain.
DESC
s.homepage = 'https://github.com/gxchain/Graphene'
s.license = 'BSD'
s.authors = { 'lanhaoxiang' => 'lanhaoxiang@qq.com'}
s.source = { :git => 'https://github.com/gxchain/Graphene.git', :tag => s.version.to_s }
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.source_files = 'Graphene/**/*.{h,m}'
s.resource = 'Graphene/Graphene.bundle'
s.public_header_files = 'Graphene/**/*.h'
s.exclude_files = ['GrapheneTests/**/*.{h,m}']
s.requires_arc = true
s.framework = 'Foundation'
s.ios.framework = 'UIKit'
s.osx.framework = 'AppKit'
s.dependency 'OpenSSL-Universal'
s.dependency 'SocketRocket'
end