-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathJCStockGraph.podspec
More file actions
24 lines (20 loc) · 972 Bytes
/
JCStockGraph.podspec
File metadata and controls
24 lines (20 loc) · 972 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 = "JCStockGraph"
s.version = "1.0.1"
s.summary = "A simple graph view controller which displays a stock's historical price data from the Yahoo finance API."
s.homepage = "https://github.com/jconst/JCStockGraph"
s.screenshots = "https://s3.amazonaws.com/jcon.st/graphss1.gif", "https://s3.amazonaws.com/jcon.st/graphss2.gif"
s.license = 'MIT'
s.author = { "Joseph Constantakis" => "jcon5294@gmail.com" }
s.source = { :git => "https://github.com/jconst/JCStockGraph.git", :tag => s.version.to_s }
s.platform = :ios, '6.0'
s.ios.deployment_target = '6.0'
s.requires_arc = true
s.source_files = 'Classes'
s.public_header_files = 'Classes/*.h'
s.dependency 'CorePlot', '~> 1.5'
s.dependency 'AFNetworking', '~> 2.0'
s.dependency 'MBProgressHUD', '~> 0.8'
s.dependency 'MTDates', '~> 0.12'
s.dependency 'FontasticIcons', '~> 0.5'
end