forked from Jaspersoft/js-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJaspersoftSDK.podspec
More file actions
27 lines (25 loc) · 1.03 KB
/
Copy pathJaspersoftSDK.podspec
File metadata and controls
27 lines (25 loc) · 1.03 KB
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
27
Pod::Spec.new do |s|
s.name = "JaspersoftSDK"
s.version = "2.0.0"
s.summary = "JaspersoftSDK - The simplest way to build JasperReports Server apps."
s.description = <<-DESC
JaspersoftSDK for iOS is a set of Objective-C classes to easily connect
and consume the services provided by JasperReports Server
using the REST API (available in JasperReports Server 5.5.0 or greater).!
DESC
s.homepage = "http://community.jaspersoft.com/project/mobile-sdk-ios"
s.license = { :type => "GNU GPL v.3", :file => "LICENSE.txt" }
s.author = "TIBCO Software"
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/Jaspersoft/js-ios-sdk.git", :tag => "#{s.version}" }
s.source_files = "Classes", "Classes/**/*.{h,m}"
s.public_header_files = "Classes/**/*.h"
s.prefix_header_contents = <<-EOS
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
EOS
s.framework = "Foundation"
s.requires_arc = true
s.dependency "RestKit/Core", ">= 0.20.0"
s.dependency "ServerReachability"
end