Skip to content

Instantly share code, notes, and snippets.

@nicinabox
Created January 15, 2015 19:55
Show Gist options
  • Save nicinabox/616fa0d3c4a64e526e8f to your computer and use it in GitHub Desktop.
Save nicinabox/616fa0d3c4a64e526e8f to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
class MakePEM
def initialize(argv)
@file = argv[0]
abort help unless valid_args
parts = @file.split('.')
@name = parts.first
create_pem
end
def valid_args
@file and @file.match(/p12$/)
end
def help
<<-doc
Usage:
makepem file.p12
doc
end
def create_pem
`openssl pkcs12 -in #{@file} -out #{@name}.pem -nodes -clcerts`
if $? == 0
`rm #{@file}`
puts 'Done'
end
end
end
MakePEM.new(ARGV)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment