├── .gitignore ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── vagrant-trellis-cert.rb └── vagrant_plugins │ └── trellis_cert │ ├── certificate.rb │ ├── command │ ├── distrust.rb │ ├── root.rb │ └── trust.rb │ ├── config.rb │ ├── identity.rb │ ├── plugin.rb │ ├── result.rb │ └── ssl_config.rb └── vagrant-trellis-cert.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require 'bundler/gem_tasks' 4 | -------------------------------------------------------------------------------- /lib/vagrant-trellis-cert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/lib/vagrant-trellis-cert.rb -------------------------------------------------------------------------------- /lib/vagrant_plugins/trellis_cert/certificate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/lib/vagrant_plugins/trellis_cert/certificate.rb -------------------------------------------------------------------------------- /lib/vagrant_plugins/trellis_cert/command/distrust.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/lib/vagrant_plugins/trellis_cert/command/distrust.rb -------------------------------------------------------------------------------- /lib/vagrant_plugins/trellis_cert/command/root.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/lib/vagrant_plugins/trellis_cert/command/root.rb -------------------------------------------------------------------------------- /lib/vagrant_plugins/trellis_cert/command/trust.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/lib/vagrant_plugins/trellis_cert/command/trust.rb -------------------------------------------------------------------------------- /lib/vagrant_plugins/trellis_cert/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/lib/vagrant_plugins/trellis_cert/config.rb -------------------------------------------------------------------------------- /lib/vagrant_plugins/trellis_cert/identity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/lib/vagrant_plugins/trellis_cert/identity.rb -------------------------------------------------------------------------------- /lib/vagrant_plugins/trellis_cert/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/lib/vagrant_plugins/trellis_cert/plugin.rb -------------------------------------------------------------------------------- /lib/vagrant_plugins/trellis_cert/result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/lib/vagrant_plugins/trellis_cert/result.rb -------------------------------------------------------------------------------- /lib/vagrant_plugins/trellis_cert/ssl_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/lib/vagrant_plugins/trellis_cert/ssl_config.rb -------------------------------------------------------------------------------- /vagrant-trellis-cert.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typisttech/vagrant-trellis-cert/HEAD/vagrant-trellis-cert.gemspec --------------------------------------------------------------------------------