# follow `ruby.wasm` tutorial
curl -LO https://github.com/ruby/ruby.wasm/releases/latest/download/ruby-head-wasm32-unknown-wasi-full.tar.gz
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
| default_platform(:ios) | |
| platform :ios do | |
| desc "Push a new beta build to Crashlytics" | |
| lane :beta do | |
| cert | |
| sigh(adhoc: true) | |
| cocoapods | |
| build_app( |
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
| #!/bin/bash | |
| curl -L https://gist.github.com/aspick/1bb85f388a45ce4d17a18d7792bb48d1/raw -o ~/.config/fish/functions/fish_prompt.fish |
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
| export LSCOLORS=Exfxcxdxbxegedabagacad | |
| function fish_prompt | |
| if not set -q __fish_prompt_hostname | |
| set -g __fish_prompt_hostname (hostname|cut -d . -f 1) | |
| end | |
| set_color normal | |
| set -g fish_prompt_pwd_dir_length 0 | |
| echo -s -n "$USER" @ "$__fish_prompt_hostname" " " |
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
| dependencies: | |
| cache_directories: | |
| - packages | |
| - "~/.apt-cache" | |
| pre: | |
| # https://discuss.circleci.com/t/add-ability-to-cache-apt-get-programs/598/4 | |
| - sudo rm -rf /var/cache/apt/archives && sudo ln -s ~/.apt-cache /var/cache/apt/archives && mkdir -p ~/.apt-cache/partial | |
| - mkdir -p packages | |
| override: |
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
| Gem::Specification.new do |spec| | |
| spec.name = "ruboty-doma" | |
| spec.version = "0.0.1" | |
| spec.authors = ["aspick"] | |
| spec.email = ["[email protected]"] | |
| spec.summary = "ruboty plugin" | |
| spec.files = ["ruboty-doma.rb"] | |
| spec.require_path = "." | |
| end |
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
| /** | |
| * Module dependencies. | |
| */ | |
| var express = require('express') | |
| , routes = require('./routes') | |
| , user = require('./routes/user') | |
| , http = require('http') | |
| , path = require('path') | |
| , ImmortalNTwitter = require('immortal-ntwitter') |