vagrant-trellis-sequel 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Gemfile +1 -1
- data/{LICENSE.txt → LICENSE} +2 -1
- data/README.md +90 -64
- data/lib/vagrant_plugins/trellis_sequel/{commands → command}/open.rb +1 -1
- data/lib/vagrant_plugins/trellis_sequel/{commands → command}/root.rb +2 -2
- data/lib/vagrant_plugins/trellis_sequel/identity.rb +1 -1
- data/lib/vagrant_plugins/trellis_sequel/plugin.rb +2 -2
- data/vagrant-trellis-sequel.gemspec +8 -4
- metadata +26 -29
- data/.github_changelog_generator +0 -2
- data/.hound.yml +0 -4
- data/.rubocop.yml +0 -15
- data/CHANGELOG.md +0 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 0fde7228a56d4538351e601ae0e68243ecc54fc376f60b9b6af7982f7abddf86
|
4
|
+
data.tar.gz: 461551beea1b48577d3289e321cbeb2a42ebf535685dd7452f071d2bd76e61f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 98d6019f904c498f8ddbe5324bc096de25fa3d334e1e3507ef153dbb112d591682e55918d5bdbc7a94c0390d4150722e965f12b6a5a7ae0379a9ec98f9344212
|
7
|
+
data.tar.gz: 7803d8855e6735a9ae36330a61529dd3c55c7380d91f6c6d7a9ec245b76619dd1210ff5ea0b6d74aa005d97ffbd3c9bcba772e17e0d4da35c73c61d8b54f7bb6
|
data/Gemfile
CHANGED
@@ -13,7 +13,7 @@ unless ENV.key?('VAGRANT_INSTALLER_EMBEDDED_DIR')
|
|
13
13
|
$stderr.puts "Couldn't find a packaged install of vagrant, and we need this"
|
14
14
|
$stderr.puts 'in order to make use of the RubyEncoder libraries.'
|
15
15
|
$stderr.puts 'I looked in:'
|
16
|
-
|
16
|
+
embedded_directories.each do |path|
|
17
17
|
$stderr.puts " #{path}"
|
18
18
|
end
|
19
19
|
end
|
data/{LICENSE.txt → LICENSE}
RENAMED
@@ -1,6 +1,7 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c) 2017
|
3
|
+
Copyright (c) 2017-2020 Typist Tech
|
4
|
+
Copyright (c) 2017-2020 Tang Rufus
|
4
5
|
|
5
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
7
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
@@ -1,50 +1,45 @@
|
|
1
|
+
<div align="center">
|
2
|
+
|
1
3
|
# Vagrant Trellis Sequel
|
2
4
|
|
3
|
-
|
4
|
-
[![Gem](https://img.shields.io/gem/dt/vagrant-trellis-sequel.svg)](https://rubygems.org/gems/vagrant-trellis-sequel)
|
5
|
-
[![Dependency Status](https://gemnasium.com/badges/github.com/TypistTech/vagrant-trellis-sequel.svg)](https://gemnasium.com/github.com/TypistTech/vagrant-trellis-sequel)
|
6
|
-
[![license](https://img.shields.io/github/license/TypistTech/vagrant-trellis-sequel.svg)](https://github.com/TypistTech/vagrant-trellis-sequel/blob/master/LICENSE)
|
7
|
-
[![Donate via PayPal](https://img.shields.io/badge/Donate-PayPal-blue.svg)](https://www.typist.tech/donate/vagrant-trellis-sequel/)
|
8
|
-
[![Hire Typist Tech](https://img.shields.io/badge/Hire-Typist%20Tech-ff69b4.svg)](https://www.typist.tech/contact/)
|
9
|
-
|
10
|
-
Open Trellis databases in Sequel Pro with a 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
|
-
- [Noob](#noob)
|
19
|
-
- [Specify which site's database](#specify-which-sites-database)
|
20
|
-
- [Specify vault password file](#specify-vault-password-file)
|
21
|
-
- [Specify vault password](#specify-vault-password)
|
22
|
-
- [Common Errors](#common-errors)
|
23
|
-
- [DB password not found for `example_dev`](#db-password-not-found-for-example_dev)
|
24
|
-
- [HMAC encoded in the file does not match calculated one](#hmac-encoded-in-the-file-does-not-match-calculated-one)
|
25
|
-
- [Connection Errors](#connection-errors)
|
26
|
-
- [`key_load_public: No such file or directory`](#key_load_public-no-such-file-or-directory)
|
27
|
-
- [Support!](#support)
|
28
|
-
- [Donate via PayPal *](#donate-via-paypal-)
|
29
|
-
- [Why don't you hire me?](#why-dont-you-hire-me)
|
30
|
-
- [Want to help in other way? Want to be a sponsor?](#want-to-help-in-other-way-want-to-be-a-sponsor)
|
31
|
-
- [Feedback](#feedback)
|
32
|
-
- [Change log](#change-log)
|
33
|
-
- [Credits](#credits)
|
34
|
-
- [Contributing](#contributing)
|
35
|
-
- [License](#license)
|
36
|
-
|
37
|
-
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
5
|
+
</div>
|
38
6
|
|
39
|
-
|
7
|
+
<div align="center">
|
40
8
|
|
41
|
-
|
42
|
-
|
43
|
-
|
9
|
+
[![Gem](https://img.shields.io/gem/v/vagrant-trellis-sequel.svg?style=flat-square)](https://rubygems.org/gems/vagrant-trellis-sequel)
|
10
|
+
[![Gem](https://img.shields.io/gem/dt/vagrant-trellis-sequel.svg?style=flat-square)](https://rubygems.org/gems/vagrant-trellis-sequel)
|
11
|
+
[![license](https://img.shields.io/github/license/TypistTech/vagrant-trellis-sequel.svg?style=flat-square)](https://github.com/TypistTech/vagrant-trellis-sequel/blob/master/LICENSE)
|
12
|
+
[![Twitter Follow @TangRufus](https://img.shields.io/twitter/follow/TangRufus?style=flat-square&color=1da1f2&logo=twitter)](https://twitter.com/tangrufus)
|
13
|
+
[![Hire Typist Tech](https://img.shields.io/badge/Hire-Typist%20Tech-ff69b4.svg?style=flat-square)](https://www.typist.tech/contact/)
|
14
|
+
|
15
|
+
</div>
|
16
|
+
|
17
|
+
<p align="center">
|
18
|
+
<strong>Open Trellis databases in Sequel Pro with a single command</strong>
|
19
|
+
<br />
|
20
|
+
<br />
|
21
|
+
Built with ♥ by <a href="https://www.typist.tech/">Typist Tech</a>
|
22
|
+
</p>
|
23
|
+
|
24
|
+
---
|
25
|
+
|
26
|
+
**Vagrant Trellis Sequel** is an open source project and completely free to use.
|
27
|
+
|
28
|
+
However, the amount of effort needed to maintain and develop new features is not sustainable without proper financial backing. If you have the capability, please consider donating using the links below:
|
29
|
+
|
30
|
+
<div align="center">
|
31
|
+
|
32
|
+
[![GitHub via Sponsor](https://img.shields.io/badge/Sponsor-GitHub-ea4aaa?style=flat-square&logo=github)](https://github.com/sponsors/TangRufus)
|
33
|
+
[![Sponsor via PayPal](https://img.shields.io/badge/Sponsor-PayPal-blue.svg?style=flat-square&logo=paypal)](https://typist.tech/go/paypal-donate/)
|
34
|
+
[![More Sponsorship Information](https://img.shields.io/badge/Sponsor-More%20Details-ff69b4?style=flat-square)](https://typist.tech/donate/vagrant-trellis-sequel/)
|
35
|
+
|
36
|
+
</div>
|
37
|
+
|
38
|
+
---
|
44
39
|
|
45
40
|
## Usage
|
46
41
|
|
47
|
-
```
|
42
|
+
```sh-session
|
48
43
|
$ vagrant trellis-sequel open --help
|
49
44
|
Usage: vagrant trellis-sequel open [options] [vm-id]
|
50
45
|
|
@@ -57,7 +52,7 @@ Usage: vagrant trellis-sequel open [options] [vm-id]
|
|
57
52
|
|
58
53
|
### Noob
|
59
54
|
|
60
|
-
```
|
55
|
+
```sh-session
|
61
56
|
$ vagrant trellis-sequel open
|
62
57
|
```
|
63
58
|
|
@@ -65,19 +60,20 @@ This works for most of the cases:
|
|
65
60
|
- `vault.yml` is unencrypted
|
66
61
|
- `vault.yml` is encrypted and `.vault_pass` contains the vault password
|
67
62
|
- running from within the Trellis directory
|
63
|
+
- open the first found database
|
68
64
|
|
69
65
|
### Specify which site's database
|
70
66
|
|
71
|
-
```
|
67
|
+
```sh-session
|
72
68
|
$ vagrant trellis-sequel open --site example.com
|
73
69
|
```
|
74
70
|
|
75
71
|
Use the `--site` option to specify which site's database to open. By default, the first site's database will be opened.
|
76
|
-
Note: This is the site key of `vault_wordpress_sites` in `vault.yml`, usually ends with `.com`.
|
72
|
+
Note: This is the **site key** of `vault_wordpress_sites` in `vault.yml`, usually ends with `.com`.
|
77
73
|
|
78
74
|
### Specify vault password file
|
79
75
|
|
80
|
-
```
|
76
|
+
```sh-session
|
81
77
|
$ vagrant trellis-sequel open --vault-password-file .my_vault_password_file
|
82
78
|
$ vagrant trellis-sequel open --vault-password-file /my/top/secret.txt
|
83
79
|
```
|
@@ -87,12 +83,26 @@ Default value is `.vault_pass` if `vault.yml` is encrypted.
|
|
87
83
|
|
88
84
|
### Specify vault password
|
89
85
|
|
90
|
-
```
|
86
|
+
```sh-session
|
91
87
|
$ vagrant trellis-sequel open --vault-pass my-top-secret
|
92
88
|
```
|
93
89
|
|
94
90
|
Use the `--vault-pass` option to provide vault password if you encrypted `vault.yml` but don't have a vault password file.
|
95
91
|
|
92
|
+
---
|
93
|
+
|
94
|
+
<p align="center">
|
95
|
+
<strong>Typist Tech is ready to build your next awesome WordPress site. <a href="https://typist.tech/contact/">Hire us!</a></strong>
|
96
|
+
</p>
|
97
|
+
|
98
|
+
---
|
99
|
+
|
100
|
+
## Installation
|
101
|
+
|
102
|
+
```sh-session
|
103
|
+
$ vagrant plugin install vagrant-trellis-sequel
|
104
|
+
```
|
105
|
+
|
96
106
|
## Common Errors
|
97
107
|
|
98
108
|
### DB password not found for `example_dev`
|
@@ -113,20 +123,20 @@ vault_wordpress_sites:
|
|
113
123
|
db_password: hello
|
114
124
|
```
|
115
125
|
|
116
|
-
For the above `vault.yml`, these
|
117
|
-
```
|
126
|
+
For the above `vault.yml`, these 3 commands are valid:
|
127
|
+
```sh-session
|
128
|
+
$ vagrant trellis-sequel open # Open one of the DB, most likely the first one
|
118
129
|
$ vagrant trellis-sequel open --site example.com
|
119
130
|
$ vagrant trellis-sequel open --site www.typist.tech
|
120
131
|
```
|
121
132
|
|
122
|
-
|
123
133
|
### HMAC encoded in the file does not match calculated one
|
124
134
|
|
125
135
|
That means vault password is incorrect.
|
126
136
|
|
127
137
|
## Connection Errors
|
128
138
|
|
129
|
-
|
139
|
+
*This part is stolen from from [Sequel Pro for Chassis](https://github.com/Chassis/SequelPro/tree/b3236ca5205e34f6c2e135a9f1b8aa0f1686717b#connection-errors).*
|
130
140
|
|
131
141
|
If you get a connection error, the first thing to attempt to debug is to check the details that Sequel Pro gives you (under the Show Details button).
|
132
142
|
|
@@ -152,29 +162,49 @@ The simple solution is to add this to your `~/.ssh/config` file:
|
|
152
162
|
|
153
163
|
This disables using system-level keys (both from the agent, and your regular SSH keys), and disables host checks (which are not necessary for localhost). This does not affect `vagrant ssh`, which already uses these options.
|
154
164
|
|
155
|
-
##
|
165
|
+
## FAQs
|
166
|
+
|
167
|
+
### What about remote databases?
|
168
|
+
|
169
|
+
If you want to open non-vagrant databases, i.e: production or staging databases on remote sevrers, use [`$ trellis db open`](https://github.com/roots/trellis-cli/pull/72) instead.
|
170
|
+
|
171
|
+
### What to do when `getaddrinfo: nodename nor servname provided, or not known`
|
156
172
|
|
157
|
-
|
173
|
+
Make sure your hosts file (`/etc/hosts`) contains all the domains you're self-signing.
|
158
174
|
|
159
|
-
|
175
|
+
Usually it can be rectified by `$ vagrant reload --provision` or `$ vagrant hostmanager`.
|
160
176
|
|
161
|
-
|
177
|
+
Ask on [Root Discourse](https://discourse.roots.io/) if the problem persists.
|
162
178
|
|
163
|
-
|
179
|
+
### It looks awesome. Where can I find some more goodies like this
|
164
180
|
|
165
|
-
|
181
|
+
- Articles on [Typist Tech's blog](https://typist.tech)
|
182
|
+
- [Tang Rufus' WordPress plugins](https://profiles.wordpress.org/tangrufus#content-plugins) on wp.org
|
183
|
+
- More projects on [Typist Tech's GitHub profile](https://github.com/TypistTech)
|
184
|
+
- Stay tuned on [Typist Tech's newsletter](https://typist.tech/go/newsletter)
|
185
|
+
- Follow [Tang Rufus' Twitter account](https://twitter.com/TangRufus)
|
186
|
+
- **Hire [Tang Rufus](https://typist.tech/contact) to build your next awesome site**
|
166
187
|
|
167
|
-
|
188
|
+
### Where can I give 5-star reviews?
|
189
|
+
|
190
|
+
Thanks! Glad you like it. It's important to let me knows somebody is using this project. Please consider:
|
191
|
+
|
192
|
+
- [tweet](https://twitter.com/intent/tweet?text=Vagrant%20Trellis%20Sequel%20-%20Open%20Trellis%20databases%20in%20%40sequelpro%20with%20a%20single%20command&url=https://github.com/TypistTech/vagrant-trellis-sequel&hashtags=webdev,wordpress&via=TangRufus&url=https://github.com/TypistTech/vagrant-trellis-sequel&hashtags=webdev,wordpress&via=TangRufus) something good with mentioning [@TangRufus](https://twitter.com/tangrufus)
|
193
|
+
- ★ star [the Github repo](https://github.com/TypistTech/vagrant-trellis-sequel)
|
194
|
+
- [👀 watch](https://github.com/TypistTech/vagrant-trellis-sequel/subscription) the Github repo
|
195
|
+
- write tutorials and blog posts
|
196
|
+
- **[hire](https://www.typist.tech/contact/) Typist Tech**
|
168
197
|
|
169
198
|
## Feedback
|
170
199
|
|
171
|
-
**Please provide feedback!** We want to make this
|
172
|
-
Please submit an
|
200
|
+
**Please provide feedback!** We want to make this project as useful as possible.
|
201
|
+
Please [submit an issue](https://github.com/TypistTech/vagrant-trellis-sequel/issues/new) and point out what you do and don't like, or fork the project and [send pull requests](https://github.com/TypistTech/vagrant-trellis-sequel/pulls/).
|
173
202
|
**No issue is too small.**
|
174
203
|
|
175
|
-
##
|
204
|
+
## Security Vulnerabilities
|
176
205
|
|
177
|
-
|
206
|
+
If you discover a security vulnerability within this project, please email us at [vagrant-trellis-sequel@typist.tech](mailto:vagrant-trellis-sequel@typist.tech).
|
207
|
+
All security vulnerabilities will be promptly addressed.
|
178
208
|
|
179
209
|
## Credits
|
180
210
|
|
@@ -186,10 +216,6 @@ Special thanks to [the Roots team](https://roots.io/about/) whose [Trellis](http
|
|
186
216
|
|
187
217
|
Full list of contributors can be found [here](https://github.com/TypistTech/vagrant-trellis-sequel/graphs/contributors).
|
188
218
|
|
189
|
-
## Contributing
|
190
|
-
|
191
|
-
Please see [CODE_OF_CONDUCT](./CODE_OF_CONDUCT.md) for details.
|
192
|
-
|
193
219
|
## License
|
194
220
|
|
195
221
|
[Vagrant Trellis Sequel](https://github.com/TypistTech/vagrant-trellis-sequel) is released under the [MIT License](https://opensource.org/licenses/MIT).
|
@@ -4,7 +4,7 @@ require 'optparse'
|
|
4
4
|
|
5
5
|
module VagrantPlugins
|
6
6
|
module TrellisSequel
|
7
|
-
module
|
7
|
+
module Command
|
8
8
|
class Root < Vagrant.plugin('2', :command)
|
9
9
|
def self.synopsis
|
10
10
|
'open Trellis databases in Sequel Pro'
|
@@ -33,7 +33,7 @@ module VagrantPlugins
|
|
33
33
|
rescue Vagrant::Errors::VagrantError => e
|
34
34
|
raise e
|
35
35
|
rescue StandardError => e
|
36
|
-
raise Vagrant::Errors::CLIInvalidUsage, help: e.message
|
36
|
+
raise Vagrant::Errors::CLIInvalidUsage, help: "#{e.message}\r\n\r\nBacktrace:\r\n#{e.backtrace&.join("\r\n")}"
|
37
37
|
end
|
38
38
|
|
39
39
|
private
|
@@ -9,7 +9,12 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.version = VagrantPlugins::TrellisSequel::Identity.version
|
10
10
|
spec.authors = ['Tang Rufus', 'Typist Tech']
|
11
11
|
spec.email = ['tangrufus@gmail.com', 'vagrant-trellis-sequel@typist.tech']
|
12
|
-
|
12
|
+
spec.metadata = {
|
13
|
+
'homepage_uri' => 'https://typist.tech/projects/vagrant-trellis-sequel/',
|
14
|
+
'source_code_uri' => 'https://github.com/TypistTech/vagrant-trellis-sequel',
|
15
|
+
'bug_tracker_uri' => 'https://github.com/TypistTech/vagrant-trellis-sequel/issues',
|
16
|
+
'mailing_list_uri' => 'https://typist.tech/go/newsletter/',
|
17
|
+
}
|
13
18
|
spec.summary = VagrantPlugins::TrellisSequel::Identity.summary
|
14
19
|
spec.homepage = 'https://www.typist.tech/projects/vagrant-trellis-sequel'
|
15
20
|
spec.license = 'MIT'
|
@@ -25,7 +30,6 @@ Gem::Specification.new do |spec|
|
|
25
30
|
|
26
31
|
spec.add_runtime_dependency 'ansible-vault', '~> 0.2.1'
|
27
32
|
|
28
|
-
spec.add_development_dependency 'bundler', '~> 1.
|
29
|
-
spec.add_development_dependency 'rake', '~>
|
30
|
-
spec.add_development_dependency 'rubocop', '~> 0.49'
|
33
|
+
spec.add_development_dependency 'bundler', '~> 2.1', '>= 2.1.4'
|
34
|
+
spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.1'
|
31
35
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-trellis-sequel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tang Rufus
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2020-05-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: ansible-vault
|
@@ -31,42 +31,40 @@ dependencies:
|
|
31
31
|
requirements:
|
32
32
|
- - "~>"
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: '1
|
34
|
+
version: '2.1'
|
35
|
+
- - ">="
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: 2.1.4
|
35
38
|
type: :development
|
36
39
|
prerelease: false
|
37
40
|
version_requirements: !ruby/object:Gem::Requirement
|
38
41
|
requirements:
|
39
42
|
- - "~>"
|
40
43
|
- !ruby/object:Gem::Version
|
41
|
-
version: '1
|
44
|
+
version: '2.1'
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 2.1.4
|
42
48
|
- !ruby/object:Gem::Dependency
|
43
49
|
name: rake
|
44
50
|
requirement: !ruby/object:Gem::Requirement
|
45
51
|
requirements:
|
46
52
|
- - "~>"
|
47
53
|
- !ruby/object:Gem::Version
|
48
|
-
version: '
|
49
|
-
|
50
|
-
prerelease: false
|
51
|
-
version_requirements: !ruby/object:Gem::Requirement
|
52
|
-
requirements:
|
53
|
-
- - "~>"
|
54
|
+
version: '13.0'
|
55
|
+
- - ">="
|
54
56
|
- !ruby/object:Gem::Version
|
55
|
-
version:
|
56
|
-
- !ruby/object:Gem::Dependency
|
57
|
-
name: rubocop
|
58
|
-
requirement: !ruby/object:Gem::Requirement
|
59
|
-
requirements:
|
60
|
-
- - "~>"
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
version: '0.49'
|
57
|
+
version: 13.0.1
|
63
58
|
type: :development
|
64
59
|
prerelease: false
|
65
60
|
version_requirements: !ruby/object:Gem::Requirement
|
66
61
|
requirements:
|
67
62
|
- - "~>"
|
68
63
|
- !ruby/object:Gem::Version
|
69
|
-
version: '0
|
64
|
+
version: '13.0'
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: 13.0.1
|
70
68
|
description:
|
71
69
|
email:
|
72
70
|
- tangrufus@gmail.com
|
@@ -75,19 +73,15 @@ executables: []
|
|
75
73
|
extensions: []
|
76
74
|
extra_rdoc_files: []
|
77
75
|
files:
|
78
|
-
- ".github_changelog_generator"
|
79
76
|
- ".gitignore"
|
80
|
-
- ".hound.yml"
|
81
|
-
- ".rubocop.yml"
|
82
|
-
- CHANGELOG.md
|
83
77
|
- CODE_OF_CONDUCT.md
|
84
78
|
- Gemfile
|
85
|
-
- LICENSE
|
79
|
+
- LICENSE
|
86
80
|
- README.md
|
87
81
|
- Rakefile
|
88
82
|
- lib/vagrant-trellis-sequel.rb
|
89
|
-
- lib/vagrant_plugins/trellis_sequel/
|
90
|
-
- lib/vagrant_plugins/trellis_sequel/
|
83
|
+
- lib/vagrant_plugins/trellis_sequel/command/open.rb
|
84
|
+
- lib/vagrant_plugins/trellis_sequel/command/root.rb
|
91
85
|
- lib/vagrant_plugins/trellis_sequel/identity.rb
|
92
86
|
- lib/vagrant_plugins/trellis_sequel/plugin.rb
|
93
87
|
- lib/vagrant_plugins/trellis_sequel/spf.rb
|
@@ -98,7 +92,11 @@ files:
|
|
98
92
|
homepage: https://www.typist.tech/projects/vagrant-trellis-sequel
|
99
93
|
licenses:
|
100
94
|
- MIT
|
101
|
-
metadata:
|
95
|
+
metadata:
|
96
|
+
homepage_uri: https://typist.tech/projects/vagrant-trellis-sequel/
|
97
|
+
source_code_uri: https://github.com/TypistTech/vagrant-trellis-sequel
|
98
|
+
bug_tracker_uri: https://github.com/TypistTech/vagrant-trellis-sequel/issues
|
99
|
+
mailing_list_uri: https://typist.tech/go/newsletter/
|
102
100
|
post_install_message:
|
103
101
|
rdoc_options: []
|
104
102
|
require_paths:
|
@@ -114,8 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
112
|
- !ruby/object:Gem::Version
|
115
113
|
version: '0'
|
116
114
|
requirements: []
|
117
|
-
|
118
|
-
rubygems_version: 2.5.2.1
|
115
|
+
rubygems_version: 3.1.3
|
119
116
|
signing_key:
|
120
117
|
specification_version: 4
|
121
118
|
summary: Open Trellis databases in Sequel Pro with a single command
|
data/.github_changelog_generator
DELETED
data/.hound.yml
DELETED
data/.rubocop.yml
DELETED
data/CHANGELOG.md
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
# Change Log
|
2
|
-
|
3
|
-
## [v0.2.0](https://github.com/TypistTech/vagrant-trellis-sequel/tree/v0.2.0) (2017-09-17)
|
4
|
-
[Full Changelog](https://github.com/TypistTech/vagrant-trellis-sequel/compare/v0.1.0...v0.2.0)
|
5
|
-
|
6
|
-
**Merged pull requests:**
|
7
|
-
|
8
|
-
- Re-raise `StandardError` as `Vagrant::Errors::CLIInvalidUsage` [\#9](https://github.com/TypistTech/vagrant-trellis-sequel/pull/9) ([TangRufus](https://github.com/TangRufus))
|
9
|
-
- Refactor [\#8](https://github.com/TypistTech/vagrant-trellis-sequel/pull/8) ([TangRufus](https://github.com/TangRufus))
|
10
|
-
- Try harder to determine vault password by looking through more possible paths [\#7](https://github.com/TypistTech/vagrant-trellis-sequel/pull/7) ([TangRufus](https://github.com/TangRufus))
|
11
|
-
- Extract class `Spf` [\#6](https://github.com/TypistTech/vagrant-trellis-sequel/pull/6) ([TangRufus](https://github.com/TangRufus))
|
12
|
-
- Fix unable to open unencrypted vault file and refactor [\#5](https://github.com/TypistTech/vagrant-trellis-sequel/pull/5) ([TangRufus](https://github.com/TangRufus))
|
13
|
-
- Use default Rubocop style [\#4](https://github.com/TypistTech/vagrant-trellis-sequel/pull/4) ([TangRufus](https://github.com/TangRufus))
|
14
|
-
- Require ruby version `~\> 2.3` [\#3](https://github.com/TypistTech/vagrant-trellis-sequel/pull/3) ([TangRufus](https://github.com/TangRufus))
|
15
|
-
- Support Ansible vault encrypted config file [\#2](https://github.com/TypistTech/vagrant-trellis-sequel/pull/2) ([TangRufus](https://github.com/TangRufus))
|
16
|
-
|
17
|
-
## [v0.1.0](https://github.com/TypistTech/vagrant-trellis-sequel/tree/v0.1.0) (2017-09-15)
|
18
|
-
**Merged pull requests:**
|
19
|
-
|
20
|
-
- first release [\#1](https://github.com/TypistTech/vagrant-trellis-sequel/pull/1) ([TangRufus](https://github.com/TangRufus))
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|