
Security News
Oxlint Introduces Type-Aware Linting Preview
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Podmode is a small tool that allows you to easily specify a local directory for a development pod when using Cocoapods. You can dynamically switch between using the local project or checking out the project from its remote source url.
It allows for different configurations without needing to alter the Podfile. Across developers the local path will vary, and the CI server will likely need to check out the project from the server.
You can install the gem as follows:
$ gem install ./podmode-0.1.0.gem
You might need to install dotenv
too:
$ gem install dotenv
It might be that you run into trouble when running podmode. Make sure the required directory is created, by executing:
mkdir -p ~/.touchwonders/podmodes/
In the terminal, navigate to a project directory that contains a podspec. You can run podmode
to see available options.
Run the following to create a podmode
for your project:
podmode create YourProject
You'll be asked to specify a mode. Select 1: local.
You'll then be asked to specify the path. You can enter .
to specify the current directory.
In the Podfile that needs to include your project, you can specify the podmode as follows:
require 'podmode'
...
pod 'YourProject', Podmode::Podmode.new('YourProject', 'git@gitlab.api-touchwonders.com:components/yourproject.git').options()
...
This will ensure the Podfile will target the local directory that you specified for your project.
You can specify a different pod mode on creation or when editing an existing podmode
.
Will use the git url specified in the Podfile (see above), using the default branch.
Will use the git url specified in the Podfile, using the branch specified in the podmode
.
Will use the git url specified in the Podfile, using the tag specified in the podmode
.
FAQs
Unknown package
We found that podmode demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.