Sha256: d399c74febeb84509072089459a11299849156796d0b48e8c2ec57cecaa14602

Contents?: true

Size: 449 Bytes

Versions: 3

Compression:

Stored size: 449 Bytes

Contents

puts "Setting up bundler and installing bundled gems (may take a while) ... ".magenta

copy_static_file 'Gemfile'

in_root do
  # Since the gemset is likely empty, manually install bundler so it can install the rest
  run "gem install bundler --no-ri --no-rdoc"

  # Install all other gems needed from Gemfile
  run "bundle install"
end

git :add => 'Gemfile'
git :add => 'Gemfile.lock'
git :commit => "-qm 'Add Gemfile and Gemfile.lock.'"
puts "\n"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pah-0.0.12 lib/pah/partials/_gems.rb
pah-0.0.11 lib/pah/partials/_gems.rb
pah-0.0.10 lib/pah/partials/_gems.rb