From ecab5fa57e2b31657a87c9f17e51a8b2e894fd31 Mon Sep 17 00:00:00 2001 From: elizakova <70647386+elizakova@users.noreply.github.com> Date: Mon, 2 Aug 2021 12:28:48 +0400 Subject: [PATCH 1/2] Create FSCalendar.podspec --- FSCalendar/2.8.4/FSCalendar.podspec | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 FSCalendar/2.8.4/FSCalendar.podspec diff --git a/FSCalendar/2.8.4/FSCalendar.podspec b/FSCalendar/2.8.4/FSCalendar.podspec new file mode 100644 index 0000000..ceb359c --- /dev/null +++ b/FSCalendar/2.8.4/FSCalendar.podspec @@ -0,0 +1,24 @@ +{ + "name": "FSCalendar", + "version": "2.8.4", + "summary": "A superiorly awesome iOS7+ calendar control, compatible with Objective-C and Swift.", + "homepage": "https://github.com/WenchaoD/FSCalendar", + "screenshots": "https://cloud.githubusercontent.com/assets/5186464/10262249/4fabae40-69f2-11e5-97ab-afbacd0a3da2.jpg", + "license": "MIT", + "authors": { + "Wenchao Ding": "f33chobits@gmail.com" + }, + "source": { + "git": "https://github.com/TouchInstinct/FSCalendar.git", + "tag": "2.8.4" + }, + "platforms": { + "ios": "8.0" + }, + "requires_arc": true, + "frameworks": [ + "UIKit", + "QuartzCore" + ], + "source_files": "FSCalendar/*.{h,m}" +} From 67e3bb9096325c7e63238470469d270f99242ef3 Mon Sep 17 00:00:00 2001 From: elizakova <70647386+elizakova@users.noreply.github.com> Date: Mon, 2 Aug 2021 15:29:32 +0400 Subject: [PATCH 2/2] Change format FSCalendar.podspec --- FSCalendar/2.8.4/FSCalendar.podspec | 38 +++++++++++------------------ 1 file changed, 14 insertions(+), 24 deletions(-) diff --git a/FSCalendar/2.8.4/FSCalendar.podspec b/FSCalendar/2.8.4/FSCalendar.podspec index ceb359c..8517028 100644 --- a/FSCalendar/2.8.4/FSCalendar.podspec +++ b/FSCalendar/2.8.4/FSCalendar.podspec @@ -1,24 +1,14 @@ -{ - "name": "FSCalendar", - "version": "2.8.4", - "summary": "A superiorly awesome iOS7+ calendar control, compatible with Objective-C and Swift.", - "homepage": "https://github.com/WenchaoD/FSCalendar", - "screenshots": "https://cloud.githubusercontent.com/assets/5186464/10262249/4fabae40-69f2-11e5-97ab-afbacd0a3da2.jpg", - "license": "MIT", - "authors": { - "Wenchao Ding": "f33chobits@gmail.com" - }, - "source": { - "git": "https://github.com/TouchInstinct/FSCalendar.git", - "tag": "2.8.4" - }, - "platforms": { - "ios": "8.0" - }, - "requires_arc": true, - "frameworks": [ - "UIKit", - "QuartzCore" - ], - "source_files": "FSCalendar/*.{h,m}" -} +Pod::Spec.new do |s| + s.name = "FSCalendar" + s.version = "2.8.4" + s.summary = "A superiorly awesome iOS7+ calendar control, compatible with Objective-C and Swift" + s.homepage = "https://github.com/WenchaoD/FSCalendar" + s.screenshots = "https://cloud.githubusercontent.com/assets/5186464/10262249/4fabae40-69f2-11e5-97ab-afbacd0a3da2.jpg" + s.license = "MIT" + s.author = { "Wenchao Ding" => "f33chobits@gmail.com" } + s.source = { :git => "https://github.com/TouchInstinct/FSCalendar.git", :tag => s.version } + s.platform = :ios, '8.0' + s.requires_arc = true + s.frameworks = ['UIKit', 'QuartzCore'] + s.source_files = "FSCalendar/*.{h,m}" +end