Skip to content

Instantly share code, notes, and snippets.

View bojan's full-sized avatar

Bojan Dimovski bojan

View GitHub Profile
@bojan
bojan / rbenv-copy-gems.rb
Created March 20, 2019 13:04 — forked from purp/rbenv-copy-gems.rb
rbenv: install all gems from one version to another
#!/bin/bash
# copy is a misnomer; it's actually LIST + INSTALL
# --from 2.2.1 [--to other-version-else-whatever-is-currently-set]
#
# TODO: install only most-recent version that's installed in FROM
# TODO: use gem names only from FROM, install latest available version (might be more recent than in FROM)
# TODO: pass arguments to gem command (e.g. --no-document)
CURRENT_VERSION=`rbenv version | cut -d' ' -f1`
GEM_LIST_ARGS="--local"
@bojan
bojan / ios-device-support.sh
Last active July 24, 2018 17:10 — forked from steipete/ios-xcode-device-support.sh
Using iOS 11 devices with Xcode 8.3
// The trick is to link the DeviceSupport folder from the beta to the stable version.
ln -s /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/11.0\ \(15A5361a\)/ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport
// Then restart Xcode and reconnect your devices. You will need to do that for every beta of future iOS versions
// sudo needed if you run the Mac App Store version. Always download the dmg instead... you'll thank me later :)