Create framework lanes used by Digipolitan repositories
To install fastlane, simply use gem:
[sudo] gem install fastlane
All lanes available are described here
Validate your podspec file
podspec_lint(
path: "/example/test.podspec",
verbose: true
)Clean unused targets and schemes from the Xcode project
clean_xcodeproj_configuration(
xcodeproj: "example.xcodeproj",
osx_available: false
)This action will remove all OSX scheme and target from sample.xcodeproj
Clean unused sample project from the Xcode workspace
clean_xcworkspace_configuration(
xcworkspace: "example.xcworkspace",
osx_available: false
)This action will remove the OSX sample project from example.xcworkspace
Initialize the Podfile to fit with your framework
podfile_init(
xcodeproj: "example.xcodeproj",
ios_deployment_target: '9.0',
tvos_deployment_target: '10.0'
)This action will add to the Podfile iOS 9.0 and tvOS 10.0
Create the podspec using your configuration
podspec_init(
pod_name: "SampleExample",
version: "4.3.1",
git_url: "http://sample/example.git",
ios_deployment_target: '9.0',
watchos_deployment_target: '2.0'
)This action will generate the podspec file, with an iOS and watchOS deployment