From dbf62e6744f11ca71a445be8d2796baa1b1ff431 Mon Sep 17 00:00:00 2001 From: Melvin Rivera Date: Wed, 15 Jul 2015 14:12:36 -0400 Subject: [PATCH] Fixed public/private error. --- AFDateHelper.podspec | 6 +++--- AFDateHelper/AFDateExtension.swift | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/AFDateHelper.podspec b/AFDateHelper.podspec index dcd9ef3..d31ef3c 100644 --- a/AFDateHelper.podspec +++ b/AFDateHelper.podspec @@ -9,13 +9,13 @@ Pod::Spec.new do |s| s.name = "AFDateHelper" - s.version = "2.0.2" + s.version = "2.0.3" s.summary = "Extension for NSDate in Swift." s.description = <<-DESC Extension for NSDate in Swift for creating, modifying or comparing dates. DESC s.homepage = "https://github.com/melvitax/AFDateHelper" - # s.screenshots = "https://raw.githubusercontent.com/melvitax/AFDateHelper/master/Screenshot.png" + s.screenshots = "https://raw.githubusercontent.com/melvitax/AFDateHelper/master/Screenshot.png" s.license = 'MIT' s.author = { "Melvin Rivera" => "melvin@allforces.com" } s.source = { :git => "https://github.com/melvitax/AFDateHelper.git", :tag => s.version.to_s } @@ -25,7 +25,7 @@ Pod::Spec.new do |s| s.requires_arc = true s.source_files = 'AFDateHelper/**/*' - s.resource_bundles = {} + #s.resource_bundles = {} # s.public_header_files # s.frameworks diff --git a/AFDateHelper/AFDateExtension.swift b/AFDateHelper/AFDateExtension.swift index 31b83de..5473cf3 100644 --- a/AFDateHelper/AFDateExtension.swift +++ b/AFDateHelper/AFDateExtension.swift @@ -1,7 +1,7 @@ // // AFDateExtension.swift // -// Version 2.0.2 +// Version 2.0.3 // // Created by Melvin Rivera on 7/15/14. // Copyright (c) 2014. All rights reserved. @@ -9,7 +9,7 @@ import Foundation -enum DateFormat { +public enum DateFormat { case ISO8601, DotNet, RSS, AltRSS case Custom(String) }