Skip to content

Commit 64f813a

Browse files
committed
add podspec
1 parent 64d00e1 commit 64f813a

File tree

4 files changed

+194
-0
lines changed

4 files changed

+194
-0
lines changed

LICENSE

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Takuya Okamoto
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

SubmitTransition.xcodeproj/project.pbxproj

+2
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,7 @@
375375
buildSettings = {
376376
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
377377
INFOPLIST_FILE = SubmitTransition/Info.plist;
378+
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
378379
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
379380
PRODUCT_NAME = "$(TARGET_NAME)";
380381
};
@@ -385,6 +386,7 @@
385386
buildSettings = {
386387
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
387388
INFOPLIST_FILE = SubmitTransition/Info.plist;
389+
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
388390
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
389391
PRODUCT_NAME = "$(TARGET_NAME)";
390392
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDESourceControlProjectFavoriteDictionaryKey</key>
6+
<false/>
7+
<key>IDESourceControlProjectIdentifier</key>
8+
<string>BAAADD98-B505-4691-AE77-6559761D42D5</string>
9+
<key>IDESourceControlProjectName</key>
10+
<string>SubmitTransition</string>
11+
<key>IDESourceControlProjectOriginsDictionary</key>
12+
<dict>
13+
<key>376E39A442AFC4EC56A66CF9A84AB3D937D8DACF</key>
14+
<string>https://github.com/entotsu/TKSubmitTransition.git</string>
15+
</dict>
16+
<key>IDESourceControlProjectPath</key>
17+
<string>SubmitTransition.xcodeproj</string>
18+
<key>IDESourceControlProjectRelativeInstallPathDictionary</key>
19+
<dict>
20+
<key>376E39A442AFC4EC56A66CF9A84AB3D937D8DACF</key>
21+
<string>../..</string>
22+
</dict>
23+
<key>IDESourceControlProjectURL</key>
24+
<string>https://github.com/entotsu/TKSubmitTransition.git</string>
25+
<key>IDESourceControlProjectVersion</key>
26+
<integer>111</integer>
27+
<key>IDESourceControlProjectWCCIdentifier</key>
28+
<string>376E39A442AFC4EC56A66CF9A84AB3D937D8DACF</string>
29+
<key>IDESourceControlProjectWCConfigurations</key>
30+
<array>
31+
<dict>
32+
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
33+
<string>public.vcs.git</string>
34+
<key>IDESourceControlWCCIdentifierKey</key>
35+
<string>376E39A442AFC4EC56A66CF9A84AB3D937D8DACF</string>
36+
<key>IDESourceControlWCCName</key>
37+
<string>SubmitTransition</string>
38+
</dict>
39+
</array>
40+
</dict>
41+
</plist>

TKSubmitTransition.podspec

+131
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
#
2+
# Be sure to run `pod spec lint TKSubmitTransition.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 http://docs.cocoapods.org/specification.html
6+
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
7+
#
8+
9+
Pod::Spec.new do |s|
10+
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+
18+
s.name = "TKSubmitTransition"
19+
s.version = "0.0.1"
20+
s.summary = "Animated UIButton of Loading Animation and Transition Animation. Inspired by https://dribbble.com/shots/1945593-Login-Home-Screen"
21+
22+
# s.description = <<-DESC
23+
# Animated UIButton of Loading Animation and Transition Animation. Inspired by https://dribbble.com/shots/1945593-Login-Home-Screen
24+
# DESC
25+
26+
s.homepage = "https://github.com/entotsu/TKSubmitTransition"
27+
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
28+
29+
30+
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
31+
#
32+
# Licensing your code is important. See http://choosealicense.com for more info.
33+
# CocoaPods will detect a license file if there is a named LICENSE*
34+
# Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.
35+
#
36+
37+
# s.license = "MIT (example)"
38+
s.license = { :type => "MIT", :file => "LICENSE" }
39+
40+
41+
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
42+
#
43+
# Specify the authors of the library, with email addresses. Email addresses
44+
# of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
45+
# accepts just a name if you'd rather not provide an email address.
46+
#
47+
# Specify a social_media_url where others can refer to, for example a twitter
48+
# profile URL.
49+
#
50+
51+
s.author = { "Takuya.Okamoto" => "[email protected]" }
52+
# Or just: s.author = "Takuya.Okamoto"
53+
# s.authors = { "Takuya.Okamoto" => "[email protected]" }
54+
# s.social_media_url = "http://twitter.com/Takuya.Okamoto"
55+
56+
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
57+
#
58+
# If this Pod runs only on iOS or OS X, then specify the platform and
59+
# the deployment target. You can optionally include the target after the platform.
60+
#
61+
62+
# s.platform = :ios
63+
s.platform = :ios, "8.0"
64+
65+
# When using multiple platforms
66+
# s.ios.deployment_target = "5.0"
67+
# s.osx.deployment_target = "10.7"
68+
69+
70+
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
71+
#
72+
# Specify the location from where the source should be retrieved.
73+
# Supports git, hg, bzr, svn and HTTP.
74+
#
75+
76+
s.source = { :git => "https://github.com/entotsu/TKSubmitTransition.git"}#, :tag => "0.0.1" }
77+
78+
79+
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
80+
#
81+
# CocoaPods is smart about how it includes source code. For source files
82+
# giving a folder will include any swift, h, m, mm, c & cpp files.
83+
# For header files it will include any header in the folder.
84+
# Not including the public_header_files will make all headers public.
85+
#
86+
87+
s.source_files = "Classes", "SubmitTransition/Classes/*.swift"
88+
# s.exclude_files = "Classes/Exclude"
89+
90+
# s.public_header_files = "Classes/**/*.h"
91+
92+
93+
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
94+
#
95+
# A list of resources included with the Pod. These are copied into the
96+
# target bundle with a build phase script. Anything else will be cleaned.
97+
# You can preserve files from being cleaned, please don't preserve
98+
# non-essential files like tests, examples and documentation.
99+
#
100+
101+
# s.resource = "icon.png"
102+
# s.resources = "Resources/*.png"
103+
104+
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
105+
106+
107+
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
108+
#
109+
# Link your library with frameworks, or libraries. Libraries do not include
110+
# the lib prefix of their name.
111+
#
112+
113+
# s.framework = "SomeFramework"
114+
# s.frameworks = "SomeFramework", "AnotherFramework"
115+
116+
# s.library = "iconv"
117+
# s.libraries = "iconv", "xml2"
118+
119+
120+
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
121+
#
122+
# If your library depends on compiler flags you can set them in the xcconfig hash
123+
# where they will only apply to your library. If you depend on other Podspecs
124+
# you can include multiple dependencies to ensure it works.
125+
126+
# s.requires_arc = true
127+
128+
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
129+
# s.dependency "JSONKit", "~> 1.4"
130+
131+
end

0 commit comments

Comments
 (0)