-
Notifications
You must be signed in to change notification settings - Fork 188
Description
There is a flaw in the security guide:
Add cert paths to your gemspec
s.cert_chain = ['certs/yourhandle.pem'] s.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
This works fine when building a gem with gem build, however, the signing_key won't be set if you use the gem tasks provided by Bundler, most notably rake build and rake release because $0 won't match gem. Simply adding rake to the pattern seems risky.
The current behaviour is particularly nasty since rake release implicitly rebuilds the gem. So even if you have built and signed the gem with gem build, using rake release will result in a broken release. (Just had to yank a release due to this.)
How about a less magic approach such as:
s.cert_chain = ['certs/yourhandle.pem']
s.signing_key = File.expand_path(ENV['GEM_SIGNING_KEY']) if ENV['GEM_SIGNING_KEY']
This gets rid of the assumption that you're on a Posix-like OS as well and works with whatever tool you use for building or releasing the gem:
rake release GEM_SIGNING_KEY=~/.ssh/gem-private_key.pem
The risk of cause is that you forget to set GEM_SIGNING_KEY which is why a warning should be displayed whenever a gem is built without signing it. This would also help promote the whole idea of signing gems in the first place – probably a good thing in the light of recent abuses.