octokit / octokit.objc

GitHub API client for Objective-C
MIT License
1.84k stars 319 forks source link

OctoKit on Cocoapods is broken. #277

Closed wmcbain closed 9 years ago

wmcbain commented 9 years ago

Couple of Things

[!] Unable to satisfy the following requirements:`

- `ISO8601DateFormatter (~> 0.7.0)` required by `OctoKit (0.5)`

Resolution

To resolve I created a custom podspec:

Pod::Spec.new do |s|
  s.name          = 'OctoKit'
  s.version       = '0.7.6'
  s.source        = { :git => 'https://github.com/octokit/octokit.objc.git', :commit => '1a6667f'}
  s.source_files  = 'OctoKit/*.{h,m}'
  s.requires_arc  = true
end

Just wanted to bring this to your attention and hopefully get that version bumped on Cocoapods. :+1:

mdiep commented 9 years ago

I'm not sure who maintains the podspec or if they watch this repository.

joshaber commented 9 years ago

Indeed, since we don't maintain the podspec I'll go ahead and close this. But it'd be awesome if you could open a PR on CocoaPod's Specs repo. :metal:

jeroenransijn commented 8 years ago

Even though this is closed, would greatly appreciate it to get an update when the cocoapod is updated.