From d2e91b82219afa0692d04b00d6e1f25e3521391b Mon Sep 17 00:00:00 2001 From: Angsuman Chakraborty Date: Tue, 28 Nov 2017 10:29:03 +0530 Subject: [PATCH] Without 'bundle update' it fails on json 1.8.1 `bundle update` is a safe command to add before `bundle install`. Without it, it can fail with outdated versions as it fails on json 1.8.1 installation. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6925bfe3..bdd16789 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ Meme is a generator that Vox Media uses to create social sharing images. See wor ## Install * `git clone https://github.com/voxmedia/meme.git` +* `bundle update` * `bundle install` * `bundle exec middleman` @@ -60,4 +61,4 @@ If you're hosting this application on the same domain that serves your images, t 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) -5. Create a new Pull Request \ No newline at end of file +5. Create a new Pull Request