adamdebono / ADFlipTransition

An alternative presentation animation for iOS. Mimics the flip animation from the iOS iTunes/App Store.
Other
126 stars 32 forks source link

The podspec file is invalid #7

Closed jeraldj closed 10 years ago

jeraldj commented 11 years ago

pod 'ADFlipTransition', :git => 'https://github.com/adamdebono/ADFlipTransition.git', :branch => 'master'


### Error

Pod::DSLError - Invalid ADFlipTransition.podspec file: /Users/jeraldj/Projects/calamity-gym-ios/Pods/Local Podspecs/ADFlipTransition.podspec:11: syntax error, unexpected tSYMBEG, expecting '}' :tag => '0.9.1' ^

dmauer commented 10 years ago

It just needs a comma after the "git:" line in the "source" section, e.g.:

       s.source = {
                :git => 'https://github.com/adamdebono/ADFlipTransition.git',
                :tag => '0.9.1'
        }

... trivial fix.