- Be receptive
- Have a good reputation
- Don't waste time
- Rubber duck
- Repro Case
| -----BEGIN RSA PUBLIC KEY----- | |
| MIIBCgKCAQEA8lwF36CJIMfTQrbLW6909B3SFuN/LDFSGBqeDUrJv3F/NVy+jNjv | |
| cu7mlBsN830sRxiwKha9DBzymHWOzKy11xFDO6S6jBmYbgfpTclRzXvKxghJ4rll | |
| Rj9bzrvG/CQqYUHuId0EYvEM6FQ+vjgB87LnqW6MqNYMf8FW0jk6C2A8+37R+g/Y | |
| 8lMVJ8Ia0SUOFv0MZZLbWlXqo4EvLHIIWpuRxUu2XyWXd47NZ5jmSRQ5YnjW6OYV | |
| QME3qpaPs2jbv5Ol/eCk4ccvmU4sxWmRiMJVy+1fR0V0PTJCAGXeGWFM7I3+6exM | |
| 4T3fJv4fDLbO5cdM4aOz1SOSjxR9osgjfQIDAQAB | |
| -----END RSA PUBLIC KEY----- |
| berkshelf_test $ berks install -d | |
| ==> Chef response did not contain a JSON body | |
| Error retrieving versions of cookbook 'apt' at site: 'http://cookbooks.opscode.com/api/v1/cookbooks' | |
| berkshelf_test $ berks --version | |
| Berkshelf (2.0.17) | |
| Copyright 2012-2013 Riot Games | |
| Jamie Winsor (<[email protected]>) | |
| Josiah Kiehl (<[email protected]>) |
| require 'rspec' | |
| require 'typhoeus' | |
| # This seems to fix the issue | |
| #RSpec.configure do |config| | |
| #config.before :each do | |
| #Typhoeus::Config.block_connection = true | |
| #Typhoeus::Expectation.clear | |
| #end | |
| #end |
| require 'formula' | |
| class Libstemmer < Formula | |
| # upstream is constantly changing the tarball, | |
| # so doing checksum verification here would require | |
| # constant, rapid updates to this formula. | |
| head 'http://snowball.tartarus.org/dist/libstemmer_c.tgz' | |
| homepage 'http://snowball.tartarus.org/' | |
| end |