-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
modal blocked #84
modal blocked #84
Changes from 3 commits
a871e6b
0b99e61
b62c185
3266765
914e35a
3226b4a
8f9c674
c96eaf2
60c0449
f1b26a6
e7daf59
09e0a31
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,26 +7,18 @@ | |
# | ||
|
||
Pod::Spec.new do |s| | ||
s.name = "Yoshi" | ||
s.version = "3.0.0" | ||
s.summary = "A helpful companion for your iOS app." | ||
|
||
# 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.description = <<-DESC | ||
Yoshi is a convenient wrapper around the UI code that is often needed for displaying debug menus. Out of the box, Yoshi provides easy-to-implement date, list and custom menus. | ||
DESC | ||
|
||
s.homepage = "https://github.com/prolificinteractive/Yoshi" | ||
s.screenshots = "https://raw.githubusercontent.com/prolificinteractive/Yoshi/a6e85e87cbd67f2bb3bfe60157e7b13281d80f20/Images/Yoshi.png", "https://raw.githubusercontent.com/prolificinteractive/Yoshi/c66cdf8dc2ab643fe57996d20d3cd37b8b70ceff/Images/Yoshi_iPad.png" | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { "Michael Campbell" => "[email protected]" , "Luna An" => "[email protected]"} | ||
s.source = { :git => "https://github.com/prolificinteractive/Yoshi.git", :tag => s.version.to_s } | ||
|
||
s.platform = :ios, '8.0' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is platform no longer required? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. platform is now specified in |
||
s.name = 'Yoshi' | ||
s.version = '3.0.1' | ||
s.summary = 'A helpful companion for your iOS app.' | ||
s.license = 'MIT' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we no longer link reference the license file? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. as I understand, is no longer required to make a reference to a license file, but I can change it to make the reference anyway. |
||
s.homepage = 'https://github.com/prolificinteractive/Yoshi' | ||
s.authors = { 'Michael Campbell' => '[email protected]' , 'Luna An' => '[email protected]'} | ||
s.source = { :git => "https://github.com/prolificinteractive/Yoshi.git", :tag => s.version } | ||
s.screenshots = 'https://raw.githubusercontent.com/prolificinteractive/Yoshi/a6e85e87cbd67f2bb3bfe60157e7b13281d80f20/Images/Yoshi.png", "https://raw.githubusercontent.com/prolificinteractive/Yoshi/c66cdf8dc2ab643fe57996d20d3cd37b8b70ceff/Images/Yoshi_iPad.png' | ||
|
||
s.ios.deployment_target = '8.0' | ||
s.swift_versions = ['4.2', '5.0', '5.1'] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is an open PR that takes care of Swift 5 changes. Don't we need to merge it before adding 5.x to the list? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In this PR I also migrated the code to Swift 5 (the other PR wasn't approved yet so I thought about killing two birds with the same stone) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I didn't look at the details in the other PR but looked like there was more going on. Are you saying the other PR can be declined all together once this is merged? I guess I will diff it to see what else was in there once we merge but happy to hear your thoughts |
||
|
||
s.requires_arc = true | ||
|
||
# Default subspec that contains all shared code files for the library | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the description no longer required — curious why you removed it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it was by mistake, I'll add it back right away