From f86b52f55f1c5572f8484e1d2b2acd200c515210 Mon Sep 17 00:00:00 2001 From: Mathias Quintero Date: Mon, 6 May 2019 14:10:03 +0200 Subject: [PATCH] Updatnig podspec --- Example/Pods/Pods.xcodeproj/project.pbxproj | 2 +- Ogma.podspec | 35 +++------------------ 2 files changed, 6 insertions(+), 31 deletions(-) diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj index e9ddaec..01b4097 100644 --- a/Example/Pods/Pods.xcodeproj/project.pbxproj +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -157,7 +157,7 @@ AB23F469750B744BE84E8AB7E4054DB5 /* Pods-Ogma_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Ogma_Example.modulemap"; sourceTree = ""; }; AFCB0FC1BB6D0B5889B1B94174C4942A /* AnyParser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AnyParser.swift; sourceTree = ""; }; B12C80A90ABAE84E99C28D4A6C57C6AC /* Array+collect.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "Array+collect.swift"; sourceTree = ""; }; - BD4646D13112BB1690091D678E5C564D /* Ogma.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = Ogma.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BD4646D13112BB1690091D678E5C564D /* Ogma.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = Ogma.podspec; sourceTree = ""; }; C5D3071F5D2C0B1DE5B616A49A7F838B /* AnnotatedElement.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AnnotatedElement.swift; sourceTree = ""; }; C9CA192DF7A10D70329DBDE0649A8CF8 /* Pods-Ogma_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Ogma_Tests-acknowledgements.plist"; sourceTree = ""; }; CC93267E7B302C288765AF5CD4B3DE61 /* DoubleLiteralTokenGenerator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = DoubleLiteralTokenGenerator.swift; sourceTree = ""; }; diff --git a/Ogma.podspec b/Ogma.podspec index 605fd89..cc0b977 100644 --- a/Ogma.podspec +++ b/Ogma.podspec @@ -1,42 +1,17 @@ -# -# Be sure to run `pod lib lint Ogma.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 https://guides.cocoapods.org/syntax/podspec.html -# - Pod::Spec.new do |s| s.name = 'Ogma' s.version = '0.1.0' - s.summary = 'A short description of Ogma.' - -# This description is used to generate tags and improve search results. -# * Think: What does it do? Why did you write it? What is the focus? -# * Try to keep it short, snappy and to the point. -# * Write the description between the DESC delimiters below. -# * Finally, don't worry about the indent, CocoaPods strips it! + s.summary = 'Framework for Parsing in Swift using pure functions' - s.description = <<-DESC -TODO: Add long description of the pod here. - DESC + s.description = 'Ogma is a lightweight Parsing Framework written in Swift. Say goodbye to complicated state machines! Now you can easily write a Parser using only pure functions.' - s.homepage = 'https://github.com/mathiasquintero/Ogma' - # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' + s.homepage = 'https://github.com/nerdsupremacist/Ogma' s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'mathiasquintero' => 'me@quintero.io' } - s.source = { :git => 'https://github.com/mathiasquintero/Ogma.git', :tag => s.version.to_s } - # s.social_media_url = 'https://twitter.com/' + s.source = { :git => 'https://github.com/nerdsupremacist/Ogma.git', :tag => s.version.to_s } + s.social_media_url = 'https://twitter.com/nerdsupremacist' s.ios.deployment_target = '8.0' s.source_files = 'Ogma/Classes/**/*' - - # s.resource_bundles = { - # 'Ogma' => ['Ogma/Assets/*.png'] - # } - - # s.public_header_files = 'Pod/Classes/**/*.h' - # s.frameworks = 'UIKit', 'MapKit' - # s.dependency 'AFNetworking', '~> 2.3' end