start adding cider

This commit is contained in:
Ivan Malison 2014-10-31 17:07:28 -07:00
parent 59ad068760
commit 8868e4f4b2
4 changed files with 140 additions and 2 deletions

View File

@ -0,0 +1,134 @@
{
"casks": [
"alfred",
"caffeine",
"firefox",
"flux",
"google-chrome",
"iterm2",
"java",
"karabiner",
"macpass",
"seil",
"slate",
"spotify",
"sublime-text",
"synergy",
"transmission",
"virtualbox",
"vlc",
"xquartz"
],
"formulas": [
"ack",
"ant",
"at-spi2-atk",
"at-spi2-core",
"atk",
"autoconf",
"automake",
"bash",
"binutils",
"brew-cask",
"cairo",
"cmake",
"coreutils",
"ctags",
"d-bus",
"daemonize",
"diffutils",
"ed",
"emacs",
"file-formula",
"findutils",
"fontconfig",
"fontforge",
"freetype",
"gawk",
"gdbm",
"gdk-pixbuf",
"gettext",
"gist",
"git",
"giter8",
"glib",
"glib-networking",
"gmp",
"gnome-icon-theme",
"gnu-indent",
"gnu-sed",
"gnu-tar",
"gnu-which",
"gnutls",
"go",
"gobject-introspection",
"grep",
"gsettings-desktop-schemas",
"gssdp",
"gtk+3",
"gupnp",
"gupnp-av",
"gupnp-tools",
"gzip",
"harfbuzz",
"heroku-toolbelt",
"htop-osx",
"hub",
"icu4c",
"intltool",
"jpeg",
"less",
"libevent",
"libffi",
"libidn",
"libpng",
"libsoup",
"libtasn1",
"libtiff",
"libtool",
"lzip",
"make",
"mercurial",
"netcat",
"nettle",
"ngrep",
"nmap",
"node",
"openssh",
"openssl",
"ossp-uuid",
"pandoc",
"pango",
"pcre",
"pixman",
"pkg-config",
"portmidi",
"pstree",
"pv",
"pypy",
"python",
"python3",
"readline",
"reattach-to-user-namespace",
"rsync",
"sbt",
"scala",
"sdl",
"sdl_image",
"sdl_mixer",
"sdl_ttf",
"sleuthkit",
"sqlite",
"subversion",
"tig",
"tmux",
"unzip",
"vim",
"watch",
"wdiff",
"webp",
"wget",
"xz",
"zsh"
]
}

View File

@ -5,6 +5,7 @@ ddg
ouimeaux ouimeaux
simplejson simplejson
invoke invoke
cider
lxml lxml
okcupyd okcupyd
vcrpy vcrpy

View File

@ -38,8 +38,7 @@ function go() {
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null & while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &
git clone https://github.com/IvanMalison/dotfiles.git --recursive git clone https://github.com/IvanMalison/dotfiles.git --recursive
cd dotfiles cd dotfiles
sudo pip install dotfiles sudo pip install invoke dotfiles
sudo pip install invoke
invoke setup invoke setup
} }

View File

@ -55,6 +55,10 @@ def osx_config(ctx):
os.path.join(util.RESOURCES_DIRECTORY, 'osx.sh') os.path.join(util.RESOURCES_DIRECTORY, 'osx.sh')
), pty=True) ), pty=True)
@ctask
def cider_install(ctx):
pass
@ctask @ctask
def brew_cask(ctx): def brew_cask(ctx):