Skip to content

Commit

Permalink
Fixing BUNDLE_WITHOUT setting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacques Crocker committed Nov 6, 2010
1 parent 7cac652 commit 2d16f1d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -50,7 +50,7 @@ In config/heroku.yml you will need add the Heroku apps that you would like to at

config:
all:
BUNDLE_WITHOUT: "test development"
BUNDLE_WITHOUT: "test:development"
production:
MONGODB_URI: "mongodb://[username:password@]host1[:port1][/database]"
staging:
Expand Down
2 changes: 1 addition & 1 deletion lib/generators/templates/heroku.yml
Expand Up @@ -19,7 +19,7 @@ stacks:
config:
# choose the configuration settings for all environments
all:
BUNDLE_WITHOUT: "test development"
BUNDLE_WITHOUT: "test:development"
CONFIG_VAR1: "config1"
CONFIG_VAR2: "config2"

Expand Down
2 changes: 1 addition & 1 deletion spec/fixtures/heroku-config.yml
Expand Up @@ -8,7 +8,7 @@ stacks:

config:
all:
BUNDLE_WITHOUT: "test development"
BUNDLE_WITHOUT: "test:development"
CONFIG_VAR1: "config1"
CONFIG_VAR2: "config2"

Expand Down
2 changes: 1 addition & 1 deletion spec/heroku/rails/heroku_config_spec.rb
Expand Up @@ -54,7 +54,7 @@ module Heroku::Rails
end

it "should include configs defined in 'all'" do
@config["BUNDLE_WITHOUT"].should == "test development"
@config["BUNDLE_WITHOUT"].should == "test:development"
end

it "should use configs defined in 'staging' ahead of configs defined in 'all'" do
Expand Down

0 comments on commit 2d16f1d

Please sign in to comment.