vagrant-trellis-cert 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.github_changelog_generator +2 -0
- data/.gitignore +14 -0
- data/.rubocop.yml +2 -0
- data/CHANGELOG.md +11 -0
- data/CODE_OF_CONDUCT.md +46 -0
- data/Gemfile +15 -0
- data/LICENSE.txt +21 -0
- data/README.md +123 -0
- data/Rakefile +3 -0
- data/lib/vagrant-trellis-cert.rb +4 -0
- data/lib/vagrant_trellis_cert/command.rb +84 -0
- data/lib/vagrant_trellis_cert/identity.rb +14 -0
- data/lib/vagrant_trellis_cert/plugin.rb +12 -0
- data/vagrant-trellis-cert.gemspec +32 -0
- metadata +105 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: f5dc968ff3aeeeb40f81c0bf4c9f4b784cf9a021
|
4
|
+
data.tar.gz: 7233ea81af68564040d3cfed01ddfcfb247f0b98
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 91c2fa0d5cdf39161f36702ae9decc071d3975576eb7fabc86d9711bdce1da965001ce45ca22329bbe0eed730cc31ab7aa2efaac8c0e528eb59ed71e26815f1a
|
7
|
+
data.tar.gz: a9bacea5737f3783a8ca3a9c6e2c330ec3f98f6d510097a17e8b79600ccf28ead38483750522a251a37db142661bf4df19b800687ad80a2dcfc0f9173f4aee23
|
data/.gitignore
ADDED
data/.rubocop.yml
ADDED
data/CHANGELOG.md
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
# Change Log
|
2
|
+
|
3
|
+
## [0.1.0](https://github.com/TypistTech/vagrant-trellis-cert/tree/0.1.0) (2017-09-12)
|
4
|
+
**Merged pull requests:**
|
5
|
+
|
6
|
+
- first release [\#2](https://github.com/TypistTech/vagrant-trellis-cert/pull/2) ([TangRufus](https://github.com/TangRufus))
|
7
|
+
- Fix: Incorrect link [\#1](https://github.com/TypistTech/vagrant-trellis-cert/pull/1) ([TangRufus](https://github.com/TangRufus))
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
|
6
|
+
|
7
|
+
## Our Standards
|
8
|
+
|
9
|
+
Examples of behavior that contributes to creating a positive environment include:
|
10
|
+
|
11
|
+
* Using welcoming and inclusive language
|
12
|
+
* Being respectful of differing viewpoints and experiences
|
13
|
+
* Gracefully accepting constructive criticism
|
14
|
+
* Focusing on what is best for the community
|
15
|
+
* Showing empathy towards other community members
|
16
|
+
|
17
|
+
Examples of unacceptable behavior by participants include:
|
18
|
+
|
19
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
|
20
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
21
|
+
* Public or private harassment
|
22
|
+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
|
23
|
+
* Other conduct which could reasonably be considered inappropriate in a professional setting
|
24
|
+
|
25
|
+
## Our Responsibilities
|
26
|
+
|
27
|
+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
|
28
|
+
|
29
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
|
30
|
+
|
31
|
+
## Scope
|
32
|
+
|
33
|
+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
|
34
|
+
|
35
|
+
## Enforcement
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at vagrant-trellis-cert@typist.tech. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
|
38
|
+
|
39
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
|
40
|
+
|
41
|
+
## Attribution
|
42
|
+
|
43
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
|
44
|
+
|
45
|
+
[homepage]: http://contributor-covenant.org
|
46
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
6
|
+
|
7
|
+
group :development do
|
8
|
+
gem "bundler", "~> 1.15"
|
9
|
+
gem "rake", "~> 12.1"
|
10
|
+
gem "rubocop", "~> 0.49"
|
11
|
+
end
|
12
|
+
|
13
|
+
group :plugins do
|
14
|
+
gem "vagrant-trellis-cert", path: "."
|
15
|
+
end
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Tang Rufus
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,123 @@
|
|
1
|
+
# Vagrant Trellis Cert
|
2
|
+
|
3
|
+
[![Gem](https://img.shields.io/gem/v/vagrant-trellis-cert.svg)](https://rubygems.org/gems/vagrant-trellis-cert)
|
4
|
+
[![Gem](https://img.shields.io/gem/dt/vagrant-trellis-cert.svg)](https://rubygems.org/gems/vagrant-trellis-cert)
|
5
|
+
[![Dependency Status](https://gemnasium.com/badges/github.com/TypistTech/vagrant-trellis-cert.svg)](https://gemnasium.com/github.com/TypistTech/vagrant-trellis-cert)
|
6
|
+
[![license](https://img.shields.io/github/license/TypistTech/vagrant-trellis-cert.svg)](https://github.com/TypistTech/vagrant-trellis-cert/blob/master/LICENSE)
|
7
|
+
[![Donate via PayPal](https://img.shields.io/badge/Donate-PayPal-blue.svg)](https://www.typist.tech/donate/vagrant-trellis-cert/)
|
8
|
+
[![Hire Typist Tech](https://img.shields.io/badge/Hire-Typist%20Tech-ff69b4.svg)](https://www.typist.tech/contact/)
|
9
|
+
|
10
|
+
Trust all Trellis self-signed certificates with single command
|
11
|
+
|
12
|
+
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
13
|
+
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
14
|
+
|
15
|
+
|
16
|
+
- [Installation](#installation)
|
17
|
+
- [Usage](#usage)
|
18
|
+
- [Going super lazy](#going-super-lazy)
|
19
|
+
- [Limitations](#limitations)
|
20
|
+
- [Support!](#support)
|
21
|
+
- [Donate via PayPal *](#donate-via-paypal-)
|
22
|
+
- [Why don't you hire me?](#why-dont-you-hire-me)
|
23
|
+
- [Want to help in other way? Want to be a sponsor?](#want-to-help-in-other-way-want-to-be-a-sponsor)
|
24
|
+
- [Feedback](#feedback)
|
25
|
+
- [Change log](#change-log)
|
26
|
+
- [Author Information](#author-information)
|
27
|
+
- [Contributing](#contributing)
|
28
|
+
- [License](#license)
|
29
|
+
|
30
|
+
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
31
|
+
|
32
|
+
## Installation
|
33
|
+
|
34
|
+
```bash
|
35
|
+
$ vagrant plugin install vagrant-trellis-cert
|
36
|
+
```
|
37
|
+
|
38
|
+
## Usage
|
39
|
+
|
40
|
+
```bash
|
41
|
+
# Trust all certificates on a Trellis vagrant VM
|
42
|
+
$ vagrant trellis-cert [--path <path>]
|
43
|
+
|
44
|
+
# Example: Running at Trellis root
|
45
|
+
$ vagrant trellis-cert
|
46
|
+
|
47
|
+
# Example: Specify Trellis root
|
48
|
+
$ vagrant trellis-cert --path /path/to/trellis
|
49
|
+
```
|
50
|
+
|
51
|
+
## Going super lazy
|
52
|
+
|
53
|
+
If the [vagrant-triggers](https://github.com/emyl/vagrant-triggers) plugin is installed, we can run the command on Vagrant state changes like `vagrant up` and `vagrant reload`. Add these line into Trellis' `Vagrantfile`:
|
54
|
+
|
55
|
+
```ruby
|
56
|
+
# Vagrantfile
|
57
|
+
|
58
|
+
# Some lines of code...
|
59
|
+
|
60
|
+
Vagrant.configure('2') do |config|
|
61
|
+
|
62
|
+
# Some more lines of code later...
|
63
|
+
|
64
|
+
config.trigger.after :up, :stdout => true do
|
65
|
+
run "vagrant trellis-cert"
|
66
|
+
end
|
67
|
+
|
68
|
+
config.trigger.after :provision, :stdout => true do
|
69
|
+
run "vagrant trellis-cert"
|
70
|
+
end
|
71
|
+
|
72
|
+
config.trigger.after :reload, :stdout => true do
|
73
|
+
run "vagrant trellis-cert"
|
74
|
+
end
|
75
|
+
|
76
|
+
end
|
77
|
+
```
|
78
|
+
|
79
|
+
## Limitations
|
80
|
+
|
81
|
+
Pull requests are welcome!
|
82
|
+
|
83
|
+
- Only works on macOS
|
84
|
+
|
85
|
+
## Support!
|
86
|
+
|
87
|
+
### Donate via PayPal [![Donate via PayPal](https://img.shields.io/badge/Donate-PayPal-blue.svg)](https://www.typist.tech/donate/vagrant-trellis-cert/)
|
88
|
+
|
89
|
+
Love Vagrant Trellis Cert? Help me maintain it, a [donation here](https://www.typist.tech/donate/vagrant-trellis-cert/) can help with it.
|
90
|
+
|
91
|
+
### Why don't you hire me?
|
92
|
+
|
93
|
+
Ready to take freelance WordPress jobs. Contact me via the contact form [here](https://www.typist.tech/contact/) or, via email [info@typist.tech](mailto:info@typist.tech)
|
94
|
+
|
95
|
+
### Want to help in other way? Want to be a sponsor?
|
96
|
+
|
97
|
+
Contact: [Tang Rufus](mailto:tangrufus@gmail.com)
|
98
|
+
|
99
|
+
## Feedback
|
100
|
+
|
101
|
+
**Please provide feedback!** We want to make this library useful in as many projects as possible.
|
102
|
+
Please submit an [issue](https://github.com/TypistTech/vagrant-trellis-cert/issues/new) and point out what you do and don't like, or fork the project and make suggestions.
|
103
|
+
**No issue is too small.**
|
104
|
+
|
105
|
+
## Change log
|
106
|
+
|
107
|
+
Please see [CHANGELOG](./CHANGELOG.md) for more information on what has changed recently.
|
108
|
+
|
109
|
+
## Author Information
|
110
|
+
|
111
|
+
[Vagrant Trellis Cert](https://github.com/TypistTech/vagrant-trellis-cert) is a [Typist Tech](https://www.typist.tech) project and maintained by [Tang Rufus](https://twitter.com/Tangrufus), freelance developer for [hire](https://www.typist.tech/contact/).
|
112
|
+
|
113
|
+
Special thanks to [the Roots team](https://roots.io/about/) whose [Trellis](https://github.com/roots/trellis) make this project possible.
|
114
|
+
|
115
|
+
Full list of contributors can be found [here](https://github.com/TypistTech/vagrant-trellis-cert/graphs/contributors).
|
116
|
+
|
117
|
+
## Contributing
|
118
|
+
|
119
|
+
Please see [CODE_OF_CONDUCT](./CODE_OF_CONDUCT.md) for details.
|
120
|
+
|
121
|
+
## License
|
122
|
+
|
123
|
+
[Vagrant Trellis Cert](https://github.com/TypistTech/vagrant-trellis-cert) is released under the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "fileutils"
|
4
|
+
require "yaml"
|
5
|
+
|
6
|
+
module VagrantTrellisCert
|
7
|
+
class Command < Vagrant.plugin("2", :command)
|
8
|
+
def self.synopsis
|
9
|
+
"trust all Trellis self-signed certificates"
|
10
|
+
end
|
11
|
+
|
12
|
+
def execute
|
13
|
+
options = {}
|
14
|
+
opts = OptionParser.new do |o|
|
15
|
+
o.banner = "Usage: vagrant trellis-cert [--path <path>]"
|
16
|
+
o.separator ""
|
17
|
+
o.version = VagrantSudoRsync::Identity.version
|
18
|
+
o.program_name = "vagrant trellis-cert"
|
19
|
+
|
20
|
+
o.on("--path <path>", String, "Path to the Trellis root") do |path|
|
21
|
+
options[:path] = path
|
22
|
+
end
|
23
|
+
end
|
24
|
+
argv = parse_options(opts)
|
25
|
+
|
26
|
+
@path = options[:path] || "."
|
27
|
+
|
28
|
+
FileUtils.rm_rf(tmp_path)
|
29
|
+
FileUtils.mkdir_p(tmp_path)
|
30
|
+
|
31
|
+
canonical_hosts.each do |host|
|
32
|
+
system("openssl s_client -showcerts -connect #{host}:443 </dev/null 2>/dev/null | openssl x509 -outform PEM > #{tmp_path}/#{host}.pem 2>/dev/null")
|
33
|
+
end
|
34
|
+
|
35
|
+
canonical_hosts.each do |host|
|
36
|
+
success = system("security add-trusted-cert -k ~/Library/Keychains/login.keychain #{tmp_path}/#{host}.pem >/dev/null 2>/dev/null")
|
37
|
+
|
38
|
+
if success
|
39
|
+
@env.ui.success("#{host} certificate imported successfully")
|
40
|
+
else
|
41
|
+
@env.ui.error("#{host} certificate import failed")
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
FileUtils.rm_rf(tmp_path)
|
46
|
+
end
|
47
|
+
|
48
|
+
def canonical_hosts
|
49
|
+
site_hosts.map do |host|
|
50
|
+
if !host.is_a?(Hash) || !host.has_key?("canonical")
|
51
|
+
fail_with_message File.read(File.join(@path, "roles/common/templates/site_hosts.j2")).sub!("{{ env }}", "development").gsub!(/com$/, "dev")
|
52
|
+
end
|
53
|
+
|
54
|
+
host.fetch("canonical")
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
def site_hosts
|
59
|
+
sites.flat_map { |(_name, site)| site["site_hosts"] }
|
60
|
+
end
|
61
|
+
|
62
|
+
def sites
|
63
|
+
unless File.exists?(config_file)
|
64
|
+
fail_with_message "#{config_file} was not found. Please run `$ vagrant trellis-cert` with `--path` option"
|
65
|
+
end
|
66
|
+
|
67
|
+
YAML.load_file(config_file)["wordpress_sites"].tap do |sites|
|
68
|
+
fail_with_message "No sites found in #{config_file}." if sites.to_h.empty?
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
def config_file
|
73
|
+
File.join(@path, "group_vars", "development", "wordpress_sites.yml")
|
74
|
+
end
|
75
|
+
|
76
|
+
def fail_with_message(msg)
|
77
|
+
fail Vagrant::Errors::VagrantError.new, msg
|
78
|
+
end
|
79
|
+
|
80
|
+
def tmp_path
|
81
|
+
"#{@env.tmp_path}/#{VagrantTrellisCert::Identity.name}"
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
lib = File.expand_path("../lib", __FILE__)
|
5
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
6
|
+
require "vagrant_trellis_cert/identity"
|
7
|
+
|
8
|
+
Gem::Specification.new do |spec|
|
9
|
+
spec.name = VagrantTrellisCert::Identity.name
|
10
|
+
spec.version = VagrantTrellisCert::Identity.version
|
11
|
+
spec.authors = ["Tang Rufus", "Typist Tech"]
|
12
|
+
spec.email = ["tangrufus@gmail.com", "vagrant-trellis-cert@typist.tech"]
|
13
|
+
|
14
|
+
spec.summary = "Trust all Trellis self-signed certificates with single command"
|
15
|
+
spec.homepage = "https://www.typist.tech/projects/vagrant-trellis-cert"
|
16
|
+
spec.license = "MIT"
|
17
|
+
|
18
|
+
|
19
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
20
|
+
f.match(%r{^(test|spec|features)/})
|
21
|
+
end
|
22
|
+
spec.bindir = "exe"
|
23
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
|
+
spec.require_paths = ["lib"]
|
25
|
+
|
26
|
+
spec.required_ruby_version = "~> 2.2", "< 2.4"
|
27
|
+
spec.required_rubygems_version = ">= 1.3.6"
|
28
|
+
|
29
|
+
spec.add_development_dependency "bundler", "~> 1.15"
|
30
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
31
|
+
spec.add_development_dependency "rubocop", "~> 0.49"
|
32
|
+
end
|
metadata
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: vagrant-trellis-cert
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tang Rufus
|
8
|
+
- Typist Tech
|
9
|
+
autorequire:
|
10
|
+
bindir: exe
|
11
|
+
cert_chain: []
|
12
|
+
date: 2017-09-12 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - "~>"
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '1.15'
|
21
|
+
type: :development
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - "~>"
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '1.15'
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: rake
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - "~>"
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '10.0'
|
35
|
+
type: :development
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - "~>"
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '10.0'
|
42
|
+
- !ruby/object:Gem::Dependency
|
43
|
+
name: rubocop
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - "~>"
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0.49'
|
49
|
+
type: :development
|
50
|
+
prerelease: false
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - "~>"
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0.49'
|
56
|
+
description:
|
57
|
+
email:
|
58
|
+
- tangrufus@gmail.com
|
59
|
+
- vagrant-trellis-cert@typist.tech
|
60
|
+
executables: []
|
61
|
+
extensions: []
|
62
|
+
extra_rdoc_files: []
|
63
|
+
files:
|
64
|
+
- ".github_changelog_generator"
|
65
|
+
- ".gitignore"
|
66
|
+
- ".rubocop.yml"
|
67
|
+
- CHANGELOG.md
|
68
|
+
- CODE_OF_CONDUCT.md
|
69
|
+
- Gemfile
|
70
|
+
- LICENSE.txt
|
71
|
+
- README.md
|
72
|
+
- Rakefile
|
73
|
+
- lib/vagrant-trellis-cert.rb
|
74
|
+
- lib/vagrant_trellis_cert/command.rb
|
75
|
+
- lib/vagrant_trellis_cert/identity.rb
|
76
|
+
- lib/vagrant_trellis_cert/plugin.rb
|
77
|
+
- vagrant-trellis-cert.gemspec
|
78
|
+
homepage: https://www.typist.tech/projects/vagrant-trellis-cert
|
79
|
+
licenses:
|
80
|
+
- MIT
|
81
|
+
metadata: {}
|
82
|
+
post_install_message:
|
83
|
+
rdoc_options: []
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - "~>"
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '2.2'
|
91
|
+
- - "<"
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '2.4'
|
94
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - ">="
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: 1.3.6
|
99
|
+
requirements: []
|
100
|
+
rubyforge_project:
|
101
|
+
rubygems_version: 2.5.2
|
102
|
+
signing_key:
|
103
|
+
specification_version: 4
|
104
|
+
summary: Trust all Trellis self-signed certificates with single command
|
105
|
+
test_files: []
|