Sha256: d59ca38c792aad5b1da8b5380df841779f956a3e27a4ef5e101d229f91f180a6
Contents?: true
Size: 432 Bytes
Versions: 2
Compression:
Stored size: 432 Bytes
Contents
module Bently class Foreman < RubyRecipe title 'foreman' category 'gem' description 'downloads and installs foreman gem' homepage 'https://github.com/ddollar/foreman/blob/master/README.md' def initialize append 'Procfile', 'web: bundle exec rails server -p $PORT -e $RACK_ENV' run 'gem install foreman' run 'echo "RACK_ENV=development" >>.env' todo 'foreman start' end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bently-1.0.2 | lib/bently/recipe/foreman.rb |
bently-1.0.1 | lib/bently/recipe/foreman.rb |