From f5452796a3a065dfc1098b236a5f125d8de6ea28 Mon Sep 17 00:00:00 2001 From: Vitor mesquita Date: Wed, 14 Feb 2018 17:31:52 -0300 Subject: [PATCH] updating podspec; --- .swift-version | 1 + LICENSE | 19 +++++++++++++++++++ QueuePlayer.podspec | 17 +++-------------- QueuePlayer/Podfile | 10 ++++++++++ QueuePlayer/QueuePlayer.podspec | 23 ----------------------- 5 files changed, 33 insertions(+), 37 deletions(-) create mode 100644 .swift-version create mode 100644 LICENSE create mode 100644 QueuePlayer/Podfile delete mode 100644 QueuePlayer/QueuePlayer.podspec diff --git a/.swift-version b/.swift-version new file mode 100644 index 0000000..b8626c4 --- /dev/null +++ b/.swift-version @@ -0,0 +1 @@ +4 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ecd0592 --- /dev/null +++ b/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2017 Vitor mesquita + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/QueuePlayer.podspec b/QueuePlayer.podspec index e64fc54..abfa4ed 100644 --- a/QueuePlayer.podspec +++ b/QueuePlayer.podspec @@ -1,5 +1,5 @@ # -# Be sure to run `pod lib lint Malert.podspec' to ensure this is a +# Be sure to run `pod lib lint QueuePlayer.podspec' to ensure this is a # valid spec before submitting. # # Any lines starting with a # are optional, but their use is encouraged @@ -7,14 +7,10 @@ # Pod::Spec.new do |s| - s.name = 'Mextension' + s.name = 'QueuePlayer' s.version = '0.1.0' s.summary = 'A cuple of code to help develop a new app' - s.description = <<-DESC -TODO: Add long description of the pod here. - DESC - s.homepage = 'https://github.com/vitormesquita/QueuePlayer' s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'Vitor mesquita' => 'vitor.mesquita09@gmail.com' } @@ -22,13 +18,6 @@ TODO: Add long description of the pod here. s.ios.deployment_target = '9.0' - s.default_subspec = "/" - - s.subspec "/" do |ss| - ss.source_files = "Source/*.swift" - ss.framework = "UIKit" - ss.framework = "AVFoundation" - - end + s.source_files = 'Source/*.swift' end \ No newline at end of file diff --git a/QueuePlayer/Podfile b/QueuePlayer/Podfile new file mode 100644 index 0000000..da98c5d --- /dev/null +++ b/QueuePlayer/Podfile @@ -0,0 +1,10 @@ +# Uncomment the next line to define a global platform for your project +# platform :ios, '9.0' + +target 'QueuePlayer' do + # Comment the next line if you're not using Swift and don't want to use dynamic frameworks + use_frameworks! + + pod 'QueuePlayer', :path => '../' + +end diff --git a/QueuePlayer/QueuePlayer.podspec b/QueuePlayer/QueuePlayer.podspec deleted file mode 100644 index 15dc299..0000000 --- a/QueuePlayer/QueuePlayer.podspec +++ /dev/null @@ -1,23 +0,0 @@ -# -# Be sure to run `pod lib lint Malert.podspec' to ensure this is a -# valid spec before submitting. -# -# Any lines starting with a # are optional, but their use is encouraged -# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html -# - -Pod::Spec.new do |s| - s.name = 'QueuePlayer' - s.version = '0.1.0' - s.summary = 'A cuple of code to help develop a new app' - - s.homepage = 'https://github.com/vitormesquita/QueuePlayer' - s.license = { :type => 'MIT', :file => 'LICENSE' } - s.author = { 'Vitor mesquita' => 'vitor.mesquita09@gmail.com' } - s.source = { :git => 'https://github.com/vitormesquita/QueuePlayer.git', :tag => s.version.to_s } - - s.ios.deployment_target = '9.0' - - s.source_files = 'Source/*.swift' - -end \ No newline at end of file