0

「Cedar サポート アプリが検出されない」という理由で「git push heroku master」が何度も拒否された後、bundle install を実行する必要があることがわかりました。

$bundle install

    Gemfile syntax error:
      <<<<<<< HEAD
        ^
    /Users/Wes/Sites/code/omrails/Gemfile:21: syntax error, unexpected ===, expecting
    keyword_end
    =======
       ^

よし、Gemfile をチェックする:

source 'https://rubygems.org'

gem 'rails', '3.2.13'
gem 'jquery-rails'

group :production do
    gem 'pg'
end

group :development, :test do
  gem 'sqlite3'
end

group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'
  gem 'uglifier', '>= 1.0.3'

  <<<<<<< HEAD
  gem 'bootstrap-sass', '~>2.3.1.2'
=======
>>>>>>> edeb28700d0603990afb9005dd7d084890def28f
end

私はコミュニティに不慣れなため、どんな助けもいただければ幸いです。

4

1 に答える 1

0

The problem is with the

<<<<<<< HEAD

And

=======
>>>>>>> edeb28700d0603990afb9005dd7d084890def28f

These lines are results of merge between branches in your git repository, where conflicts appeared.
You should take a look at Git How To: Resolving Conflicts.

Remove those three lines and your bundle install should run properly.

于 2013-05-28T08:27:48.123 に答える