Skip to content

Commit

Permalink
Update README with correct default configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
seenmyfate committed Aug 15, 2013
1 parent 0584b5e commit 7382044
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ or can be run in isolation with `cap production bundler:install`

Configurable options, shown here with defaults:

set :bundle_gemfile, release_path.join('Gemfile')
set :bundle_dir, shared_path.join('vendor/bundle')
set :bundle_gemfile, -> { release_path.join('Gemfile') }
set :bundle_dir, -> { shared_path.join('bundle') }
set :bundle_flags, '--deployment'
set :bundle_without, %w{development test}.join(' ')
set :bundle_binstubs, shared_path.join('bin')
set :bundle_binstubs, -> { shared_path.join('bin') }
set :bundle_roles, :all

## Contributing
Expand Down

0 comments on commit 7382044

Please sign in to comment.