Socket
Book a DemoInstallSign in
Socket

fruity_builder

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fruity_builder

bundlerRubygems
Version
1.1.1
Version published
Maintainers
2
Created
Source

Fruity Builder

Code manipulation tools for iOS code bases.

Usage

Initialise with a path to the project folder:

builder = FruityBuilder::IOS::Helper.new(path)

Replacing build properties

builder.build.replace_dev_team('New dev team')
builder.build.replace_code_sign_identity('New identity')
builder.build.replace_provisioning_profile('New profile')
builder.build.save_project_properties
builder.build.replace_bundle_id('New bundle ID')

Retrieving build properties

builder.build.get_dev_teams # ['Dev Team']
builder.build.get_code_signing_identities # ['Identity 1', 'Identity 2']
builder.build.get_provisioning_profiles # ['Profile 1', 'Profile 2']

Retrieving build configurations

builder.xcode.get_schemes # ['Scheme 1', 'Scheme 2']
builder.xcode.get_build_configurations # ['Debug', 'Release', 'Test']
builder.xcode.get_target # ['Target 1', 'Target 2']

FAQs

Package last updated on 30 Aug 2016

Did you know?

Socket

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.

Install

Related posts