Skip to content

Commit db73a22

Browse files
committed
added podspec
1 parent 9d0975a commit db73a22

File tree

2 files changed

+91
-0
lines changed

2 files changed

+91
-0
lines changed

.swift-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4.0

CollectionNode.podspec

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
#
2+
# Be sure to run `pod spec lint CollectionNode.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 = "CollectionNode"
19+
s.version = "1.1.1"
20+
s.summary = "A CollectionView made for SpriteKit"
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!
27+
s.description = <<-DESC
28+
A simple to use CollectionView you can use as a SKNode in SpriteKit
29+
DESC
30+
31+
s.homepage = 'https://github.com/bwide/CollectionNode'
32+
# s.screenshots = "https://github.com/bwide/CollectionNode/blob/master/iphonePreview.gif"
33+
34+
35+
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
36+
#
37+
# Licensing your code is important. See http://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+
42+
s.license = "MIT"
43+
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
44+
45+
46+
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
47+
#
48+
# Specify the authors of the library, with email addresses. Email addresses
49+
# of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
50+
# accepts just a name if you'd rather not provide an email address.
51+
#
52+
# Specify a social_media_url where others can refer to, for example a twitter
53+
# profile URL.
54+
#
55+
56+
s.author = { "Bruno Fulber Wide" => "[email protected]" }
57+
# Or just: s.author = "Bruno Fulber Wide"
58+
# s.authors = { "Bruno Fulber Wide" => "[email protected]" }
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+
#
65+
66+
s.platform = :ios, "9.3"
67+
68+
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
69+
#
70+
# Specify the location from where the source should be retrieved.
71+
# Supports git, hg, bzr, svn and HTTP.
72+
#
73+
74+
s.source = { :git => "https://github.com/bwide/CollectionNode.git", :tag => s.version.to_s }
75+
76+
77+
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
78+
#
79+
# CocoaPods is smart about how it includes source code. For source files
80+
# giving a folder will include any swift, h, m, mm, c & cpp files.
81+
# For header files it will include any header in the folder.
82+
# Not including the public_header_files will make all headers public.
83+
#
84+
85+
s.source_files = "Source/*.{swift}"
86+
s.exclude_files = "Classes/Exclude"
87+
88+
# s.public_header_files = "Classes/**/*.h"
89+
90+
end

0 commit comments

Comments
 (0)