Brennan Stehling

Results 58 comments of Brennan Stehling

Looks good. These Gemfiles now all work. ``` ruby source 'https://rubygems.org' gem 'cocoapods', :git => 'https://github.com/CocoaPods/CocoaPods.git', :tag => '0.39-stable' gem 'activesupport', '< 5' ``` ``` ruby source 'https://rubygems.org' gem 'cocoapods',...

These work as well which I prefer. ``` ruby source 'https://rubygems.org' gem 'cocoapods', '~> 0.39.0' gem 'activesupport', '< 5' ``` ``` ruby source 'https://rubygems.org' gem 'cocoapods', '~> 1.0.0' gem 'activesupport',...

I get an error with the following Gemfile currently. ``` ruby source 'https://rubygems.org' gem 'cocoapods', '~> 1.1.0' gem 'activesupport', '< 5' ``` Below is the error. `Could not find gem...

I am guessing since 1.1 is a pre-release the 1.1.0 version is not yet available as a Gem, so the Git tag is still necessary. I can at least target...

I've documented Gemfiles which work for me. I believe I can use these Gemfile configurations to specify the version of CocoaPods I am using for each project. https://gist.github.com/brennanMKE/dff7b89836af5e51bcda0bda89967617

I also got an error on the next step. ``` > bundle exec rake generate:all https://github.com/CocoaPods/CLAide.git (at master) is not checked out. Please run `bundle install` ``` I ran `bundle...

Thanks for the update. I previously installed `yard` manually so I am past that. I still get an error as shown below. I did find that the Git submodule for...

Also, running `bundle install` appears to work without errors but the previous command continues to show the same error.