|
1 | 1 | Pod::Spec.new do |s| |
2 | | - |
3 | 2 | s.name = "YouTubePlayer" |
4 | | - s.version = "0.1" |
| 3 | + s.version = "0.2" |
5 | 4 | s.summary = "Swift library for embedding and controlling YouTube videos in your iOS applications" |
6 | 5 | s.homepage = "https://github.com/gilesvangruisen/Swift-YouTube-Player" |
7 | 6 | s.license = { :type => "MIT", :file => "LICENSE" } |
8 | 7 | s.author = { "Giles Van Gruisen" => "giles@vangruisen.com" } |
9 | 8 | s.social_media_url = "http://twitter.com/gilesvangruisen" |
10 | | - |
11 | | - # ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
12 | | - # |
13 | | - # If this Pod runs only on iOS or OS X, then specify the platform and |
14 | | - # the deployment target. You can optionally include the target after the platform. |
15 | | - # |
16 | | - |
17 | | - # s.platform = :ios |
18 | 9 | s.platform = :ios, "8.0" |
19 | | - |
20 | | - # When using multiple platforms |
21 | | - # s.ios.deployment_target = "5.0" |
22 | | - # s.osx.deployment_target = "10.7" |
23 | | - |
24 | | - |
25 | | - # ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
26 | | - # |
27 | | - # Specify the location from where the source should be retrieved. |
28 | | - # Supports git, hg, bzr, svn and HTTP. |
29 | | - # |
30 | | - |
31 | 10 | s.source = { :git => "https://github.com/gilesvangruisen/Swift-YouTube-Player.git", :tag => "v#{s.version}" } |
32 | | - |
33 | | - |
34 | | - # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
35 | | - # |
36 | | - # CocoaPods is smart about how it includes source code. For source files |
37 | | - # giving a folder will include any swift, h, m, mm, c & cpp files. |
38 | | - # For header files it will include any header in the folder. |
39 | | - # Not including the public_header_files will make all headers public. |
40 | | - # |
41 | | - |
42 | 11 | s.source_files = "YouTubePlayer/**/*.{swift,h,m}" |
43 | 12 | s.exclude_files = "Classes/Exclude" |
44 | | - |
45 | | - # s.public_header_files = "Classes/**/*.h" |
46 | | - |
47 | | - |
48 | | - # ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
49 | | - # |
50 | | - # A list of resources included with the Pod. These are copied into the |
51 | | - # target bundle with a build phase script. Anything else will be cleaned. |
52 | | - # You can preserve files from being cleaned, please don't preserve |
53 | | - # non-essential files like tests, examples and documentation. |
54 | | - # |
55 | | - |
56 | | - # s.resource = "icon.png" |
57 | | - # s.resources = "Resources/*.png" |
58 | | - |
59 | | - # s.preserve_paths = "FilesToSave", "MoreFilesToSave" |
60 | | - |
61 | | - |
62 | | - # ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
63 | | - # |
64 | | - # Link your library with frameworks, or libraries. Libraries do not include |
65 | | - # the lib prefix of their name. |
66 | | - # |
67 | | - |
68 | | - # s.framework = "SomeFramework" |
69 | | - # s.frameworks = "SomeFramework", "AnotherFramework" |
70 | | - |
71 | | - # s.library = "iconv" |
72 | | - # s.libraries = "iconv", "xml2" |
73 | | - |
74 | | - |
75 | | - # ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # |
76 | | - # |
77 | | - # If your library depends on compiler flags you can set them in the xcconfig hash |
78 | | - # where they will only apply to your library. If you depend on other Podspecs |
79 | | - # you can include multiple dependencies to ensure it works. |
80 | | - |
81 | | - # s.requires_arc = true |
82 | | - |
83 | | - # s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" } |
84 | | - # s.dependency "JSONKit", "~> 1.4" |
85 | | - |
86 | 13 | end |
0 commit comments