Just prepend $PATH with .bundle/bin:
$ cat ~/.bashrc
...
export PATH=".bundle/bin:$PATH"
...
| package main | |
| import ( | |
| "bytes" | |
| "flag" | |
| "image" | |
| "image/color" | |
| "image/draw" | |
| "image/png" | |
| "math" |
I hereby claim:
To claim this, I am signing this object:
| # frozen_string_literal: true | |
| begin | |
| require "bundler/inline" | |
| rescue LoadError => e | |
| $stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler" | |
| raise e | |
| end | |
| gemfile(true) do |
| #!/bin/sh | |
| find ~/.ssh -type f -exec chmod 600 {} \; | |
| chmod 755 ~/.ssh | |
| chmod 644 ~/.ssh/authorized_keys |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/osascript | |
| on run argv | |
| tell application "iTerm" | |
| if (count of terminals) = 0 then | |
| set _terminal to (make new terminal) | |
| else | |
| set _terminal to current terminal | |
| end if |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
| # gem 'rails' | |
| gem "activerecord" | |
| gem "actionpack" | |
| gem "actionview" | |
| gem "actionmailer" | |
| gem "activejob" | |
| gem "activesupport" | |
| gem "railties" | |
| gem "sprockets-rails" | |
| gem 'sqlite3' |
It seems that graphcis and fonts look rather blurry on some monitors when hooked up to a MacBook Pro (Retina). This might fix the issue for you:
Download patch-edid.rb from http://embdev.net/attachment/168316/patch-edid.rb
Execute in Terminal (without the $):
$ ruby patch-edid.rb
Copy produced folder (example: DisplayVendorID-22f0) to /System/Library/Displays/Overrides (authorize if needed, if the folder exists, backup it before)