Skip to content

Instantly share code, notes, and snippets.

View jinSasaki's full-sized avatar
:octocat:
Hello World

Jin Sasaki jinSasaki

:octocat:
Hello World
  • AWA
  • Tokyo
View GitHub Profile
@es-kumagai
es-kumagai / CodePiece.swift
Created March 2, 2016 03:47
ここだ。ちょうどたっぷり映されていて嬉しかった ( ´ ▽ ` ) #CodePiece #tryswiftconf
protocol Pokemon {
typealias PokemonType
func attack(move:PokemonType)
}
class Pikachu: Pokemon {
func attack(move: Electric) {
}
}
#!/usr/bin/env bash
# Automatically installs swiftenv and run's swiftenv install.
# This script was designed for usage in CI systems.
git clone --depth 1 https://github.com/kylef/swiftenv.git ~/.swiftenv
export SWIFTENV_ROOT="$HOME/.swiftenv"
export PATH="$SWIFTENV_ROOT/bin:$SWIFTENV_ROOT/shims:$PATH"
if [ -f ".swift-version" ] || [ -n "$SWIFT_VERSION" ]; then
swiftenv install -s
@johanneswuerbach
johanneswuerbach / .travis.yml
Last active April 14, 2023 20:31
Deploy an iOS app to testflight using Travis CI
---
language: objective-c
before_script:
- ./scripts/travis/add-key.sh
after_script:
- ./scripts/travis/remove-key.sh
after_success:
- ./scripts/travis/testflight.sh
env:
global: