How to make my public Cocoa pods repo have documentation on cocoapods.org instead of directly redirecting to my github page? - swift

I integrated my first library with cocoapods recently and have a full documentation readme on my github repo.
Unlike other pods, where if you search for them on cocoapods.org there is an expand button to see more information about the pod on the site, mine does not have it.Instead my own has three buttons [ Site, Docs, Spec] to the right of it, which all link to my github page.
What should i do to make the documentation accessible on cocoapods or do I have to wait for cocoapods to gather more information before they do that? Thanks!
The link to my library is https://cocoapods.org/?q=lang%3Aswift%20on%3Aios%20DLLocal. If it helps my library is coded using Swift 3.

I looked at another library and found out that the Documentation parser cocoapods uses could not parse my information because it did not know my swift version.
The error given was:
Error Parsing Pod
Could not find Objective-C Classes.
The solution was to add a file in my github repo named ".swift-version"
With contents:
3.0
Which is the version of swift used in the program.

Related

OpenUI5 offline documentation

When offline I'd like to have the UI5 documentation saved locally.
It appears the docs contained in the runtime simply reference the official website and the only other form of downloadable documentation I could find is a PDF from SAP which is indeed well structured and cross-referenced.
Still, I wonder: is there a packaged version of the UI5 documentation ?
Using the Node modules for OpenUI5, I expected to find a separate package for the documentation: there is none. Serving the unzipped SDK with any local webserver works just fine.

In memory archive with ZipFoundation

As stated on the link https://github.com/weichsel/ZIPFoundation#in-memory-archives, it should be possible to create in memory archive, still I am unable to find appropriate init method of the Archive class. Am i doing something wrong or this is not yet released?
I have seen the PR but still i cant see why this is in the documentation on the github page.
When will this feature be released?
I got an answer from the author:
weichsel commented on 28 Feb •
Hi,
The GitHub project page shows the state of README.md in the development branch (which is the default branch of the project).
The feature is very new and there is no tagged release yet.
If you want to use/test in-memory archives, please point your package manager to development.
Please also note that this feature is only available if you are targeting Swift 5 or newer. If you are integrating via Carthage, you will have to manually set the SWIFT_VERSION of the ZIPFoundation.xcodeproj to 5 manually. It is currently set to 4 for compatibility reasons. (Carthage does not provide a way to specify the language version).

Google tag manager in flutter

Good day!
I have trouble figuring out how to setup flutter with google tag manager. I have found this package that includes tag manager api. However I don't know how to configure it properly. (On the web I just had to copy paste a snippet into index.html and it worked)
As of this moment, there is an available package for google_tag_manager that could be use for the web. Aside from the package itself, you can also explore this blog about "Adding Tag Manager to Flutter app".

error: include of non-modular header inside framework module for cocoapods spec

I saw the similar issue in stackoverflow, and add --use-libraries after pod spec lint. It just says
[!] Pods written in Swift can only be integrated as frameworks; this feature is still in beta. Adduse_frameworks!to your Podfile or target to opt into using it. It very strange.
My question is how to create a framework which is written in objective-c and swift, and create a private cocoapods repository. I cannot create a correct .podspec because I use objective-c bridging header in framework, and pod spec lint always tell me error: include of non-modular header inside framework module. This makes me gonna be crazy...
I also post this issue in detail in github:
https://github.com/CocoaPods/CocoaPods/issues/3666
If anyone knows how to fix it, I'll be very appreciate for you. Thanks a lot!

Unable to select the golang sdk in Intellij IDE

I am following the following blog to configure my golang environment (OS-X machine):
http://webapp.org.ua/dev/intellij-idea-and-go-plugin/
But, whenever I try to add go sdk (installed at /usr/local/go), it appear blank selection for the SDK.
Please suggest me, if I am missing something.
This page lists the SDKs which have already been configured in IntelliJ IDEA. You need to press the "Configure..." button and point the plugin to your SDK installation. Once you do this, it will become available in the SDK list for new project creation.
I would suggest to use the following for writing golang application:
https://groups.google.com/forum/#!msg/golang-nuts/tuGS99f-kqk/Tl5KqNG0js0J
https://github.com/visualfc/liteide
If you want to use IDEA with golang, we've made a lot of progress in the past months. Please install the latest release from github releases and give it a try.
As the name suggests, there are a few issues here and there but it should work much better that the current release of the plugin.
You'll find it a class over the other offerings for writing go apps ;) (disclaimer I'm one of the contributors to the plugin, I'm very biased)