Rightpoint / RaisinToast

A UIWindow subclass used to message information to the users of your app.
MIT License
83 stars 14 forks source link

Dont work "pod try RaisinToast" #36

Open MeGaPk opened 8 years ago

MeGaPk commented 8 years ago
# Ivan @ Ivans-MacBook-Pro in ~ [11:30:13] C:1
$ pod try RaisinToast
Updating spec repositories

CocoaPods 1.0.1 is available.
To update use: `gem install cocoapods`
Until we reach version 1.0 the features of CocoaPods can and will change.
We strongly recommend that you use the latest version at all times.

For more information, see https://blog.cocoapods.org and the CHANGELOG for this version at https://github.com/CocoaPods/CocoaPods/releases/tag/1.0.1

Trying RaisinToast
Performing CocoaPods Installation

[!] Invalid `Podfile` file: [!] Unsupported options `{:exclusive=>true}` for target `RaisinToast`..

 #  from /private/var/folders/3_/wdcm9ygs7zq70g0g8c_bssl40000gn/T/CocoaPods/Try/RaisinToast/Example/Podfile:3
 #  -------------------------------------------
 #  
 >  target 'RaisinToast', :exclusive => true do
 #    pod "RaisinToast", :path => "../"
 #  -------------------------------------------

Cannot test :(

$ pod --version
1.0.0
nebyark commented 7 years ago

For anyone else seeing this issue, just update the Podfile to look like this:

source 'https://github.com/CocoaPods/Specs.git'

target 'RaisinToast' do
  pod "RaisinToast", :path => "../"
end