Sha256: b1524d05c0d59ba65a057e81faa5b81282700007546cc157b9a8def3e3f620b9
Contents?: true
Size: 1.85 KB
Versions: 1
Compression:
Stored size: 1.85 KB
Contents
# CertMunger [![Gem Version](https://badge.fury.io/rb/cert_munger.png)](http://badge.fury.io/rb/cert_munger) [![Travis CI](https://travis-ci.org/stevenhaddox/cert_munger.svg?branch=master)](https://travis-ci.org/stevenhaddox/cert_munger) [![Dependency Status](https://gemnasium.com/stevenhaddox/cert_munger.png)](https://gemnasium.com/stevenhaddox/cert_munger) [![Test Coverage](https://codeclimate.com/github/stevenhaddox/cert_munger/badges/coverage.svg)](https://codeclimate.com/github/stevenhaddox/cert_munger/coverage) [![Code Climate](https://codeclimate.com/github/stevenhaddox/cert_munger/badges/gpa.svg)](https://codeclimate.com/github/stevenhaddox/cert_munger) [![Inline docs](http://inch-ci.org/github/stevenhaddox/cert_munger.svg?branch=master)](http://inch-ci.org/github/stevenhaddox/cert_munger) A gem that takes string input for X509 certificates and attempts to reformat them into a valid certificate. This gem extends the core String class to add the `.to_cert` and `.to_cert!` methods through the CertMunger module. ## Installation Add this line to your application's Gemfile: ```ruby # Ruby 2.0+: gem 'cert_munger', '~> 1.0' # Ruby 1.9 support: gem 'cert_munger', '~> 0.2' ``` And then execute: $ bundle Or install it yourself as: $ gem install cert_munger ## Usage ```ruby # Use CertMunger on any string: new_cert = "<invalidly formatted cert string>".to_cert # Or a string read from a file (one or multiple lines): bad_cert = File.read('malformed_cert_to_parse') bad_cert.to_cert! ``` ## Contributing 1. Fork it ( https://github.com/stevenhaddox/cert_munger/fork ) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Ensure your changes have tests 4. Run the test suite (`bundle exec rake`) 5. Commit your changes (`git commit -am 'Add some feature'`) 6. Push to the branch (`git push origin my-new-feature`) 7. Create a new Pull Request
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cert_munger-1.0.0 | README.md |