Skip to content

Commit 6fb2437

Browse files
committed
Update pod specs
1 parent d0202c2 commit 6fb2437

File tree

1 file changed

+3
-119
lines changed

1 file changed

+3
-119
lines changed

paytrail-ios-sdk.podspec

Lines changed: 3 additions & 119 deletions
Original file line numberDiff line numberDiff line change
@@ -1,138 +1,22 @@
1-
#
2-
# Be sure to run `pod spec lint paytrail-ios-sdk.podspec' to ensure this is a
3-
# valid spec and to remove all comments including this before submitting the spec.
4-
#
5-
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
6-
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
7-
#
8-
91
Pod::Spec.new do |spec|
102

11-
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
12-
#
13-
# These will help people to find your library, and whilst it
14-
# can feel like a chore to fill in it's definitely to your advantage. The
15-
# summary should be tweet-length, and the description more in depth.
16-
#
17-
183
spec.name = "paytrail-ios-sdk"
19-
spec.version = "0.2.0"
4+
spec.version = "1.0.0-beta1"
205
spec.summary = "Paytrail Mobile SDK for iOS"
21-
22-
# This description is used to generate tags and improve search results.
23-
# * Think: What does it do? Why did you write it? What is the focus?
24-
# * Try to keep it short, snappy and to the point.
25-
# * Write the description between the DESC delimiters below.
26-
# * Finally, don't worry about the indent, CocoaPods strips it!
276
spec.description = <<-DESC
28-
Paytrail iOS SDK providing various functionalities for easy mobile payments.
7+
Paytrail iOS SDK providing the major payment features for easy mobile payments.
298
DESC
30-
319
spec.homepage = "https://github.com/paytrail/paytrail-ios-sdk"
32-
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
33-
34-
35-
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
36-
#
37-
# Licensing your code is important. See https://choosealicense.com for more info.
38-
# CocoaPods will detect a license file if there is a named LICENSE*
39-
# Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.
40-
#
41-
4210
spec.license = { :type => "MIT", :file => "LICENSE" }
43-
44-
45-
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
46-
#
47-
# Specify the authors of the library, with email addresses. Email addresses
48-
# of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
49-
# accepts just a name if you'd rather not provide an email address.
50-
#
51-
# Specify a social_media_url where others can refer to, for example a twitter
52-
# profile URL.
53-
#
54-
5511
spec.author = { "shiyuan" => "shiyuan.wang@qvik.fi" }
56-
# Or just: spec.author = "shiyuan"
57-
# spec.authors = { "shiyuan" => "shiyuan.wang@qvik.fi" }
58-
# spec.social_media_url = "https://twitter.com/shiyuan"
59-
60-
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
61-
#
62-
# If this Pod runs only on iOS or OS X, then specify the platform and
63-
# the deployment target. You can optionally include the target after the platform.
64-
#
6512

6613
spec.platform = :ios
6714
spec.platform = :ios, "15.0"
68-
69-
# When using multiple platforms
7015
spec.ios.deployment_target = "15.0"
71-
# spec.osx.deployment_target = "10.7"
72-
# spec.watchos.deployment_target = "2.0"
73-
# spec.tvos.deployment_target = "9.0"
74-
7516
spec.swift_version = "5.0"
7617

77-
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
78-
#
79-
# Specify the location from where the source should be retrieved.
80-
# Supports git, hg, bzr, svn and HTTP.
81-
#
82-
8318
spec.source = { :git => "https://github.com/paytrail/paytrail-ios-sdk.git", :tag => "#{spec.version}" }
8419

85-
86-
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
87-
#
88-
# CocoaPods is smart about how it includes source code. For source files
89-
# giving a folder will include any swift, h, m, mm, c & cpp files.
90-
# For header files it will include any header in the folder.
91-
# Not including the public_header_files will make all headers public.
92-
#
93-
9420
spec.source_files = "paytrail-ios-sdk", "paytrail-ios-sdk/**/*.{h,m,swift}"
95-
# spec.exclude_files = "Classes/Exclude"
96-
97-
# spec.public_header_files = "Classes/**/*.h"
98-
99-
100-
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
101-
#
102-
# A list of resources included with the Pod. These are copied into the
103-
# target bundle with a build phase script. Anything else will be cleaned.
104-
# You can preserve files from being cleaned, please don't preserve
105-
# non-essential files like tests, examples and documentation.
106-
#
107-
108-
# spec.resource = "icon.png"
109-
# spec.resources = "Resources/*.png"
110-
111-
# spec.preserve_paths = "FilesToSave", "MoreFilesToSave"
112-
113-
114-
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
115-
#
116-
# Link your library with frameworks, or libraries. Libraries do not include
117-
# the lib prefix of their name.
118-
#
119-
120-
# spec.framework = "SomeFramework"
121-
# spec.frameworks = "SomeFramework", "AnotherFramework"
122-
123-
# spec.library = "iconv"
124-
# spec.libraries = "iconv", "xml2"
125-
126-
127-
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
128-
#
129-
# If your library depends on compiler flags you can set them in the xcconfig hash
130-
# where they will only apply to your library. If you depend on other Podspecs
131-
# you can include multiple dependencies to ensure it works.
132-
133-
# spec.requires_arc = true
134-
135-
# spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
136-
# spec.dependency "JSONKit", "~> 1.4"
13721

138-
end
22+
end

0 commit comments

Comments
 (0)