Skip to content
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.

Commit

Permalink
Don't use 'bundle install --local' by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
ketan committed Jun 18, 2011
1 parent 8cd6cd0 commit 33253e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/project.rb
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def initialize(attrs = {})
@config_file_content = '' @config_file_content = ''
@error_message = '' @error_message = ''
@triggers = [ ChangeInSourceControlTrigger.new(self) ] @triggers = [ ChangeInSourceControlTrigger.new(self) ]
@bundler_args = %W(--path=#{self.gem_install_path} --gemfile=#{self.gemfile} --local --no-color) @bundler_args = %W(--path=#{self.gem_install_path} --gemfile=#{self.gemfile} --no-color)


self.source_control = attrs[:scm] if attrs[:scm] self.source_control = attrs[:scm] if attrs[:scm]


Expand Down
1 change: 1 addition & 0 deletions cruise_config.rb
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@


Project.configure do |project| Project.configure do |project|
project.email_notifier.emails = ["cruisecontrolrb@thoughtworks.com"] if Socket.gethostname =~ /cruisecontrolrb.thoughtworks.com/ project.email_notifier.emails = ["cruisecontrolrb@thoughtworks.com"] if Socket.gethostname =~ /cruisecontrolrb.thoughtworks.com/
project.bundler_args = "--path=#{project.gem_install_path} --gemfile=#{project.gemfile} --no-color --local"
end end

0 comments on commit 33253e5

Please sign in to comment.