Sha256: 3f59f6ba6ce160f396a6a2ae1572d59d86c3b87b531f53225890942911e89440
Contents?: true
Size: 572 Bytes
Versions: 1
Compression:
Stored size: 572 Bytes
Contents
#!/bin/bash vagrant_dir="/vagrant" root_dir="/root/pandler" if ! ruby -v; then yum install -y ruby fi if ! gem -v; then yum install -y rubygems fi if ! bundle -v; then gem install bundler fi if ! git --version; then yum install -y git fi mkdir -p $root_dir cd $root_dir for i in lib spec etc Gemfile Rakefile pandler.gemspec .git .gitignore LICENSE.txt README.md Vagrantfile vagrant_file.sh; do ln -sf "$vagrant_dir/$i" . done mkdir -p "$root_dir/bin" ln -sf "$vagrant_dir/bin/pandle" bin/pandle bundle install --path vendor/bundle bundle exec pandle help
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pandler-0.0.1 | vagrant_file.sh |