forked from crosswalk-project/ios-extensions-crosswalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crosswalk-extension-presentation.podspec
23 lines (19 loc) · 1.17 KB
/
crosswalk-extension-presentation.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright (c) 2015 Intel Corporation. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
Pod::Spec.new do |s|
s.name = 'crosswalk-extension-presentation'
s.version = '1.1'
s.summary = 'Presentation extension is a Crosswalk extension which implements the W3C Presentation API: http://www.w3.org/TR/presentation-api/'
s.homepage = 'https://github.com/crosswalk-project/ios-extensions-crosswalk/tree/master/extensions/Presentation'
s.license = { :type => 'BSD', :file => "LICENSE" }
s.author = { 'Jonathan Dong' => '[email protected]' }
s.source = { :git => 'https://github.com/crosswalk-project/ios-extensions-crosswalk.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/xwalk_project'
s.platform = :ios, '8.1'
s.ios.deployment_target = '8.1'
s.module_name = 'Presentation'
s.dependency 'crosswalk-ios', '~> 1.2'
s.source_files = 'extensions/Presentation/Presentation/*.{h,m,swift}'
s.resource = 'extensions/Presentation/Presentation/*.js', 'extensions/Presentation/Presentation/extensions.plist'
end