Sha256: e15bfadb9d44a2b8033bf9b517a7b3244ec22493ea0e24c38afd49230c0c927a

Contents?: true

Size: 505 Bytes

Versions: 2

Compression:

Stored size: 505 Bytes

Contents

copy_static_file 'Gemfile'

gsub_file 'Gemfile', /RAILS_VERSION/, ::Pah::RAILS_VERSION

begin
  require 'bundler'
rescue LoadError
  # Install bundler if needed
  if !(run "gem install bundler --no-ri --no-rdoc")
    puts "Error installing bundler, will attempt to continue"
  end
  require 'bundler'
end

# Install all other gems needed from Gemfile
if !(run "bundle install --jobs=4")
  puts "Error installing gems, aborting"
  exit 1
end

git add: 'Gemfile*'
git_commit 'Add Gemfile and Gemfile.lock.'

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pah-0.0.15 lib/pah/partials/_gems.rb
pah-0.0.14 lib/pah/partials/_gems.rb