summaryrefslogtreecommitdiff
path: root/bin/setup
diff options
context:
space:
mode:
authorDaniel Doubrovkine (dB.) @dblockdotorg <dblock@dblock.org>2019-11-18 08:55:48 -0500
committerGitHub <noreply@github.com>2019-11-18 08:55:48 -0500
commit641bafcb44bd164c33ec6a9817ae6b79c3741491 (patch)
tree6f3e0387e7638cb8c57a2494a87dfba28f84c6b2 /bin/setup
parent2846ea63a90a594ed67e3eb8ba7c5fd125909089 (diff)
parenta193865fde1b4c9548d91b06abea479235fcd556 (diff)
downloadhashie-641bafcb44bd164c33ec6a9817ae6b79c3741491.tar.gz
Merge pull request #498 from michaelherold/gemspec-updates
Update the gemspec for improved information and installation size/speed
Diffstat (limited to 'bin/setup')
-rwxr-xr-xbin/setup7
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/setup b/bin/setup
index b65ed50..e52c127 100755
--- a/bin/setup
+++ b/bin/setup
@@ -1,7 +1,12 @@
#!/bin/bash
+
set -euo pipefail
IFS=$'\n\t'
bundle install
-# Do any other automated setup that you need to do here
+for dir in spec/integration/*; do
+ pushd "$dir"
+ bundle install
+ popd
+done