-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCalculateCalendarLogic.podspec
24 lines (24 loc) · 1.53 KB
/
CalculateCalendarLogic.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "CalculateCalendarLogic"
s.swift_versions = '5.9'
s.version = "0.8.1"
s.summary = "This library CalculateCalendarLogic (sample project name is handMadeCalendarAdvance) can judge a holiday in Japan."
s.description = <<-DESC
This library 'CalculateCalendarLogic' can judge a holiday in Japan.
When you use this library, you can judge can judge a holiday in Japan very easily.
A method which named 'judgeJapaneseHoliday' method stores variables year, month, and day in an argument, it returns true or false.
DESC
s.homepage = "http://qiita.com/fumiyasac@github/items/33bfc07ad36dfffcdf8f"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Fumiya Sakai" => "[email protected]" }
s.platform = :ios, '14.0'
s.source = { :git => "https://github.com/fumiyasac/handMadeCalendarAdvance.git", :tag => "#{s.version}" }
s.social_media_url = "https://twitter.com/fumiyasac"
s.source_files = "CalculateCalendarLogic/*.swift"
s.exclude_files = "CalculateCalendarLogic/*.plist"
s.requires_arc = true
s.ios.deployment_target = '14.0'
s.osx.deployment_target = '11.0'
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}
end