I wanted to switch over to using the beta podspec, and updating my Podfile according to the documentation, and received the error "unable to find a specification for MaterialComponentsbeta`.
Steps to reproduce the behavior:
Podfile
with pod 'MaterialComponentsBeta', :git => 'https://github.com/material-components/material-components-ios', :branch => 'develop'
pod install
.Install appropriate pod libraries
Received the following error:
Analyzing dependencies
Pre-downloading: `AlertOnboarding` from `https://github.com/doronkatz/AlertOnboarding.git`, branch `master`
Pre-downloading: `MaterialComponentsBeta` from `https://github.com/material-components/material-components-ios`, branch `develop`
[!] Unable to find a specification for 'MaterialComponentsBeta'.
[!] Unable to load a podspec from `MaterialComponentsSnapshotTests.podspec`, skipping:
Pod::DSLError
[!] Unable to load a podspec from `MaterialComponents.podspec`, skipping:
Pod::DSLError
[!] Unable to load a podspec from `MaterialComponentsBeta.podspec`, skipping:
Pod::DSLError
I think you are using wrong url, you should try following to fix your issue.
pod 'MaterialComponentsBeta', :git => 'https://github.com/material-components/material-components-ios.git'
See this documentation Material Design Beta Components