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
#!/usr/bin/env ruby | |
BREWFILE_DIR = '~/local/etc' | |
module StringAsk | |
refine String do | |
def ask? | |
print("#{self}? [y/N] ") | |
if /y|yes|t|true/i =~ gets.chomp | |
return true |
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
cask_args appdir: '/Applications' | |
tap 'caskroom/cask' | |
tap 'caskroom/fonts' | |
tap 'homebrew/bundle' | |
tap 'homebrew/dupes' | |
tap 'homebrew/services' | |
tap 'homebrew/versions' |
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
@setlocal | |
call %~dp0ruby_2.4.2-2-x86\bin\ridk.cmd enable | |
@if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH% | |
@if not exist "%HOME%" @set HOME=%USERPROFILE% | |
@cd /d %~dp0 | |
@start %COMSPEC% |
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
$ rake | |
rake test | |
GIT https://github.com/picoruby/mruby-compiler2.git -> build/repos/host/mruby-compiler2 | |
Cloning into '/Users/kouji/work/picoruby/R2P2/lib/picoruby/build/repos/host/mruby-compiler2'... | |
remote: Enumerating objects: 115, done. | |
remote: Counting objects: 100% (115/115), done. | |
remote: Compressing objects: 100% (96/96), done. | |
remote: Total 115 (delta 1), reused 89 (delta 1), pack-reused 0 (from 0) | |
Receiving objects: 100% (115/115), 73.14 KiB | 2.03 MiB/s, done. | |
Resolving deltas: 100% (1/1), done. |
OlderNewer