日々精進

新しく学んだことを書き留めていきます

CocoaPodでライブラリをインストールしようとしたらエラーが出た

pod installを実行すると以下のようなエラーが出た。

### Report

* What did you do?

* What did you expect to happen?

* What happened instead?


### Stack

```
   CocoaPods : 0.17.2
        Ruby : ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin11.0]
    RubyGems : 1.8.24
        Host : Mac OS X 10.7.5 (11G63b)
       Xcode : 4.6 (4H127)
Ruby lib dir : /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib
Repositories : master -  @ fatal: Not a git repository (or any of the parent directories): .git
```

### Podfile

```ruby
platform :osx, '10.7'
pod 'Kiwi'
pod 'BlockInjection' '~> 2.1'
#pod 'ReactiveCocoa'
```

### Error

```
Pod::DSLError - Invalid `Podfile` file: compile error
/Users/username/Documents/Projects/ForexGlance/Podfile:3: syntax error, unexpected tIDENTIFIER, expecting $end
pod 'BlockInjection' '~> 2.1'
                                 ^
 #
 #  from /Users/username/Documents/Projects/ForexGlance/Podfile:3
 #  -------------------------------------------
 #  pod 'Kiwi'
pod 'BlockInjection'rd', '~> 2.1'
 #  #pod 'ReactiveCocoa'
 #  -------------------------------------------
 #

これはpod 'BlockInjection'の部分をブラウザからコピペしたら変な改行コードが入ってしまったことが原因っぽい。
改行を一旦削除して再入力したら直った。