-
Notifications
You must be signed in to change notification settings - Fork 6
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
Swift Playground Support #92
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
miguelangel-dev
force-pushed
the
playground_ipad_support
branch
from
September 30, 2019 08:30
f2774eb
to
f55d130
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
As a user, I would like to have Playgrounds with support for third party libraries in my iPad. I would like using
nef
generate aPlayground
with the whole dependencies compatible with my iPad.How is it implemented?
The project has been splitted in
UI
,Component
andTest
UI inside the
iPad
folder you can find the command line script, in the end, it only gets the values from the command line and sends to Component (nef-ipad framework)Component in framework
NefiPad
you can find the whole logic for build a Swift Playground with the whole dependencies.Tests you can find the firsts unit tests for Components framework
Helpers -
nef
commands in Swift PlaygroundWe have added some commands to help development in iPad. Between them, you can find:
How can I use it?
we can build a Swift Playground with third-party libraries using the next command:
iPad --package <package path> --to <output path> --name <playground name>