orta / cocoapods-keys

A key value store for storing per-developer environment and application keys
MIT License
1.55k stars 92 forks source link

Still supported with Cocoapods v1.0.0beta? #131

Closed idokleinman closed 8 years ago

idokleinman commented 8 years ago

My Podfile looks like that:

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

target 'Particle' do
  pod 'Spark-SDK', :path => '../spark-sdk-ios'
  pod 'SparkSetup', :path => '../spark-setup-ios'
  pod 'MBProgressHUD'
  pod 'TSMessages'
  pod 'PullToRefreshCoreText', '~> 0.1'
  pod 'ASValueTrackingSlider'
  pod 'Mixpanel'
  plugin 'cocoapods-keys', {
      :project => "Particle",
      :keys => [
      "MixpanelToken",
      "OAuthClientId",
      "OAuthSecret"
      ]}
end

It worked perfectly fine for my build before, now with Cocoapods 1.0.0beta6 I am getting: I am getting

Fetching podspec for `Keys` from `Pods/CocoaPodsKeys`
[!] No podspec found for `Keys` in `Pods/CocoaPodsKeys`

Any ideas? Thanks

idokleinman commented 8 years ago

oops, duplicate