From bf3c63c454a9ba631ba022111f2cf3674bed4080 Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Fri, 22 Nov 2013 23:39:30 -0800 Subject: [PATCH] Install packages to convert videos to gifs Useful for turning screencasts of features or bugs into animated gifs that can be embedded in READMEs or bug reports. --- README.md | 3 +++ lib/brew | 2 ++ lib/npm | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 820c58e9d..fd6a2415f 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,8 @@ Homebrew formulae: * [ack](http://betterthangrep.com/) * bash (latest version) * [bash-completion](http://bash-completion.alioth.debian.org/) +* ffmpeg +* graphicsmagick * jpeg * [macvim](http://code.google.com/p/macvim/) * [node](http://nodejs.org/) @@ -77,6 +79,7 @@ Homebrew formulae: Node packages: * [bower](http://bower.io/) +* [gify](https://github.com/visionmedia/node-gify) * [grunt-cli](http://gruntjs.com/) * [jshint](http://www.jshint.com/) * [karma](http://karma-runner.github.io/) diff --git a/lib/brew b/lib/brew index 889b28556..287d4876c 100644 --- a/lib/brew +++ b/lib/brew @@ -23,6 +23,8 @@ run_brew() { 'ack' 'bash' 'bash-completion' + 'ffmpeg' + 'graphicsmagick' 'jpeg' 'macvim --override-system-vim' 'node' diff --git a/lib/npm b/lib/npm index 30739b1af..c2da92e56 100644 --- a/lib/npm +++ b/lib/npm @@ -7,7 +7,7 @@ run_npm() { e_header "Installing Node.js packages..." # List of npm packages - local packages="bower grunt-cli jshint karma yo" + local packages="bower gify grunt-cli jshint karma yo" # Install packages globally and quietly npm install $packages --global --quiet