This file contains hidden or 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
# Network | |
pod 'Moya' | |
pod 'Kingfisher' | |
# Analytics/Bugtracking | |
pod 'Fabric' | |
pod 'Crashlytics' | |
# UI Customization | |
pod 'SnapKit' |
This file contains hidden or 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
# Terminal | |
MacBook-User:~ ruby --version |
This file contains hidden or 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
# Terminal | |
# Get latest rvm | |
MacBook-User:~ \curl -sSL https://get.rvm.io | bash -s stable | |
# Shows the list of versions of the ruby | |
MacBook-User:~ rvm list known | |
# Install ruby version ruby-x.x.x | |
MacBook-User:~ rvm install ruby-2.4.0 | |
# Use ruby version ruby-x.x.x as default | |
MacBook-User:~ rvm use ruby-2.4.2 --default | |
# Show default ruby version |
This file contains hidden or 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
# Terminal | |
# Get latest rvm | |
MacBook-User:~ fastlane dev keychainPath:"~/Library/Keychains/login.keychain" keychainPassword:"{Password}" scheme:"CIApp" configuration:"Release" exportMethod:"enterprise" crashlyticsGroups:"qa" slackChannel:"ci_integration" |
This file contains hidden or 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
# Customise this file, documentation can be found here: | |
# https://github.com/fastlane/fastlane/tree/master/fastlane/docs | |
# All available actions: https://docs.fastlane.tools/actions | |
# can also be listed using the `fastlane actions` command | |
# Change the syntax highlighting to Ruby | |
# All lines starting with a # are ignored when running `fastlane` | |
# If you want to automatically update fastlane if a new version is available: | |
# update_fastlane |
This file contains hidden or 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
// | |
// CactusKeyboard.swift | |
// CactusKeyboard | |
// | |
// Created by Maxim Vialykh on 1/26/18. | |
// | |
import UIKit | |
public typealias KeyboardCompletion = (Bool, CGFloat) -> Void |
This file contains hidden or 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
> git tag 1.0.0 | |
> git push origin 1.0.0 | |
Total 0 (delta 0), reused 0 (delta 0) | |
To https://github.com/CactusSoft/CactusKeyboard.git | |
* [new tag] 1.0.0 -> 1.0.0 |
This file contains hidden or 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
pod lib create CactusKeyboard |
This file contains hidden or 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
pod lib lint CactusKeyboard.podspec |
This file contains hidden or 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
pod lib lint CactusKeyboard.podspec | |
-> CactusKeyboard (1.0.0) | |
CactusKeyboard passed validation. |