blob: 7711ae8e8e7911a6366b3e825e9d5277dfc27561 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Pod::Spec.new do |s|
s.name = "SmartDeviceLink-iOS"
s.version = "4.1.2"
s.summary = "Connect your app with cars!"
s.homepage = "https://github.com/smartdevicelink/SmartDeviceLink-iOS"
s.license = { :type => "New BSD", :file => "LICENSE" }
s.author = { "SmartDeviceLink Team" => "joel@livio.io" }
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/smartdevicelink/sdl_ios.git", :tag => s.version.to_s }
s.source_files = "SmartDeviceLink-iOS/SmartDeviceLink/*.{h,m}"
s.requires_arc = true
end
|