From 1e2f9ac79e4f01c5a2a6a97d84fa8b785293f134 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Thu, 6 Mar 2014 07:56:31 -0500 Subject: [PATCH] Run Bundler on install and bump version --- bin/svggvs | 4 ++++ lib/svggvs/version.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/svggvs b/bin/svggvs index 2205fe1..5db7b0d 100755 --- a/bin/svggvs +++ b/bin/svggvs @@ -52,6 +52,10 @@ MSG desc "install [ dir ]", "Install a Cardfile and sample template" def install(dir = '.') directory '.', dir + + Dir.chdir dir do + system %{bundle install} + end end desc "merged_file", "Write out a merged file" diff --git a/lib/svggvs/version.rb b/lib/svggvs/version.rb index 36c751e..3103840 100644 --- a/lib/svggvs/version.rb +++ b/lib/svggvs/version.rb @@ -1,3 +1,3 @@ module SVGGVS - VERSION = "0.0.8" + VERSION = "0.0.9" end