sym 2.8.0 → 2.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.circleci/config.yml +30 -31
- data/.envrc +7 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +150 -928
- data/.travis.yml +16 -26
- data/CHANGELOG.md +206 -167
- data/Gemfile +1 -0
- data/README.adoc +650 -0
- data/Rakefile +9 -3
- data/bin/{sym.completion → sym.completion.bash} +9 -14
- data/bin/sym.symit.bash +781 -0
- data/codecov.yml +29 -0
- data/design/sym-help.png +0 -0
- data/exe/keychain +1 -1
- data/exe/sym +5 -2
- data/lib/ruby_warnings.rb +7 -0
- data/lib/sym.rb +1 -7
- data/lib/sym/app.rb +1 -1
- data/lib/sym/app/args.rb +3 -2
- data/lib/sym/app/cli.rb +1 -2
- data/lib/sym/app/cli_slop.rb +1 -1
- data/lib/sym/app/commands.rb +1 -1
- data/lib/sym/app/commands/base_command.rb +1 -1
- data/lib/sym/app/commands/bash_completion.rb +20 -8
- data/lib/sym/app/commands/open_editor.rb +1 -1
- data/lib/sym/app/commands/password_protect_key.rb +4 -4
- data/lib/sym/app/commands/show_examples.rb +1 -1
- data/lib/sym/app/input/handler.rb +7 -1
- data/lib/sym/app/keychain.rb +15 -9
- data/lib/sym/app/output/noop.rb +2 -1
- data/lib/sym/app/password/cache.rb +1 -1
- data/lib/sym/app/password/providers.rb +2 -3
- data/lib/sym/app/private_key/decryptor.rb +2 -2
- data/lib/sym/app/private_key/detector.rb +4 -7
- data/lib/sym/application.rb +6 -11
- data/lib/sym/constants.rb +28 -13
- data/lib/sym/data/wrapper_struct.rb +20 -12
- data/lib/sym/errors.rb +11 -2
- data/lib/sym/extensions/instance_methods.rb +7 -8
- data/lib/sym/extensions/stdlib.rb +0 -1
- data/lib/sym/extensions/with_retry.rb +1 -1
- data/lib/sym/extensions/with_timeout.rb +1 -1
- data/lib/sym/version.rb +30 -5
- data/sym.gemspec +35 -35
- metadata +88 -71
- data/.codeclimate.yml +0 -30
- data/README.md +0 -623
- data/bin/sym.symit +0 -565
- data/lib/sym/app/password/providers/drb_provider.rb +0 -41
data/.travis.yml
CHANGED
@@ -1,31 +1,21 @@
|
|
1
1
|
language: ruby
|
2
|
-
env:
|
3
|
-
- CODECLIMATE_REPO_TOKEN=c71874cc22acffe1e2543d3388d3a96c73a65f0cfe17169dadd8de4a6c062c39 TEST_DRB=true HOME=/home/travis USER=travis
|
4
2
|
services:
|
5
3
|
- memcached
|
6
4
|
rvm:
|
7
|
-
- 2.3.
|
8
|
-
- 2.4.
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
on_failure: always
|
15
|
-
slack:
|
16
|
-
rooms:
|
17
|
-
secure: GcACCHmcmo99lYE5dgt2TmY4YIPMWr75q0Bkm4Lddegq/1eMXgcZDz00j8iHWtnveyJSjEUpZFQ9uyx+P7dvxT7D5gl43arKZEylS4vMRg9QRgZu7/ROrXbJtrUyKulFRUTdFrmOiK9nDKpAzlvLvMKC4kaQnn88Xtu9pYMU8y4n5fCtl29gZM9ZjVbrBBvV/SumnTDLla2oQ7oFgUZdZhQZ1qsevYknxNq4eIcvPDjbon+bovfsIISEVRSNo2C3yjO+mqWKed3jfuCA4taAZ8/aVVFEKURMH10HFms1CiC3lE/gF4YfBXsqKpjnB+bKjBcWox2FQrp96FulMEIfkKQrnuncO96o7MGHX9oNqKSMoycf3+SZFwNa+5Mfq7SBepbHYCoU7/ow31UTyStrc5idG19XzYgI85yjQHdzQN299Xf0O8cGf9q9qAu7rS7JlM3ekR+3rZYO+OxNYTF8rcW1fYIj6GKcbsV8BvuhAVQRFOsk/ibcIb2N7rGVd/ZbU4HAk3RE1ywt+XowinpIHktu2PQUPDNpgRQwM6xqZHO/7s9r7oW0ULmZCMLZ9CMKNjKzrQ9wfh90+v+FiEiUKsaVj4cCwF3PvhVYvxU2AKbCeHtSEb7K6to86+DYNoIKnGH1ryKoyCtyOTZpNMLGFt34Msv7WfEylhG+DpVMvkM=
|
18
|
-
addons:
|
19
|
-
code_climate:
|
20
|
-
repo_token: c71874cc22acffe1e2543d3388d3a96c73a65f0cfe17169dadd8de4a6c062c39
|
21
|
-
# regular test configuration
|
22
|
-
after_success:
|
23
|
-
- bundle exec codeclimate-test-reporter
|
24
|
-
before_script:
|
25
|
-
- echo stats | nc localhost 11211
|
5
|
+
- 2.3.8
|
6
|
+
- 2.4.10
|
7
|
+
- 2.5.8
|
8
|
+
- 2.6.6
|
9
|
+
- 2.7.1
|
10
|
+
- jruby-9.1.17.0
|
11
|
+
- jruby-9.2.13.0
|
26
12
|
script:
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
13
|
+
- bundle exec sym -B ~/.bash_profile -vTD
|
14
|
+
- export PATH="${PWD}/exe:${PATH}"
|
15
|
+
- export RUBY_MAJOR_VERSION="$(ruby -e 'puts RUBY_VERSION.split(".")[0..1].join')"
|
16
|
+
- export USER=travis
|
17
|
+
- bundle exec rspec --format documentation --order random
|
18
|
+
- if [[ "${RUBY_MAJOR_VERSION}" == "27" ]]; then bundle exec rubocop; fi
|
19
|
+
env:
|
20
|
+
global:
|
21
|
+
secure: TEh5UdrREBCXNNxMvk+kl7PcokyIgm0JXoIQI90ZMHx75yLcSdK15zt4rTvH4FzNUmnEGQnGaEJmJMqkjy9oT1BwKedqvG6eb0BFgay8ajz+eesFKH0Vu7MrHZuKrO3mfO+llr+av4K7iQPQrHJ6+7TZKu4cysFuP+szgE1blyrSgv2NaMmb2UL0HPLn0H2vxqVGn+xfc8VWGNn0IzDBLVAeUMOKyn51PMK1zupjcS+wz3uMzTWXyuB+RvIGOcYnXNZAtIQbYnVHqohrG6iOtNtDSJIVETeybghob7dRk3NTlFQ7qbYspJCflMaGQmwVc18CCO0Sa9qCVKS+z+WAeprfGrG2lIXnTxa/76OwKbEstjOdLmovDKst5dlZnH9Osg9g0US750wndKNrRFIB1A66QTxxbHWYX8JpOTYg2asSnPLptaxF3H4l85xspoiZ6LeI4z7mH9fLr5UJnU5INDDuZ+JW7pUeSri5bTLIzMkGGPj7AHEubUiKY0ldeNfskAwkNob/+nPWTtI30ex909EHu6eSQV7JR8Ng394MOmot9xKHszOJXRltv4cRQ5k0IWW+gLpc110vtqHfe/xBuL3nXWBQnaZHzVGM2E6ctKnDdN/7zamVJEFDHevj4hO6h0WWhUINp+k3QWJvj2bNrsDttpGgw5NM85OLrthGew8=
|
data/CHANGELOG.md
CHANGED
@@ -1,245 +1,284 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
2
|
|
3
|
-
## [
|
3
|
+
## [Unreleased](https://github.com/kigster/sym/tree/HEAD)
|
4
4
|
|
5
|
-
[
|
5
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.8.5...HEAD)
|
6
6
|
|
7
|
-
|
8
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.7.0...v2.8.0)
|
7
|
+
**Closed issues:**
|
9
8
|
|
10
|
-
|
9
|
+
- Ruby 2.7 warnings [\#24](https://github.com/kigster/sym/issues/24)
|
10
|
+
- Error and process hang on Windows [\#17](https://github.com/kigster/sym/issues/17)
|
11
11
|
|
12
|
-
|
13
|
-
- Ensuring that coverage, and doc folders are removed before release
|
14
|
-
- Adding sym-encrypt() and sym-decrypt() BASH helpers
|
15
|
-
- Major update to `sym.symit` to provide easier access to commands.
|
16
|
-
- Cleaning up output of the errors
|
12
|
+
**Merged pull requests:**
|
17
13
|
|
18
|
-
|
19
|
-
[
|
14
|
+
- Fix remaining 2.7 warnings; memcached & keychain [\#27](https://github.com/kigster/sym/pull/27) ([kigster](https://github.com/kigster))
|
15
|
+
- Adding Rubocop, and fixing minor issues. [\#21](https://github.com/kigster/sym/pull/21) ([kigster](https://github.com/kigster))
|
16
|
+
- First pass on Version 2.9.0 — dropping the coin gem [\#20](https://github.com/kigster/sym/pull/20) ([kigster](https://github.com/kigster))
|
17
|
+
- CI: Update matrix [\#19](https://github.com/kigster/sym/pull/19) ([olleolleolle](https://github.com/olleolleolle))
|
20
18
|
|
21
|
-
|
22
|
-
for "-f file" in addition to "-t"
|
23
|
-
* Adding 'irbtools' to development gems.
|
19
|
+
## [v2.8.5](https://github.com/kigster/sym/tree/v2.8.5) (2018-10-13)
|
24
20
|
|
25
|
-
|
26
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.6.2...v2.6.3)
|
21
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.8.4...v2.8.5)
|
27
22
|
|
28
|
-
|
29
|
-
* Better error reporting, and catching the case when STDIN is not a TTY
|
30
|
-
and yet password is required to decrypt the key.
|
23
|
+
**Closed issues:**
|
31
24
|
|
32
|
-
|
33
|
-
[
|
25
|
+
- \[feature\] Allow sym to use a password protected key without interactive input [\#12](https://github.com/kigster/sym/issues/12)
|
26
|
+
- \[feature\] support yaml mapping of file pattern to key names [\#8](https://github.com/kigster/sym/issues/8)
|
34
27
|
|
35
|
-
|
28
|
+
**Merged pull requests:**
|
36
29
|
|
37
|
-
|
38
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.6.0...v2.6.1)
|
30
|
+
- README: Use SVG badge \[ci skip\] [\#16](https://github.com/kigster/sym/pull/16) ([olleolleolle](https://github.com/olleolleolle))
|
39
31
|
|
40
|
-
|
32
|
+
## [v2.8.4](https://github.com/kigster/sym/tree/v2.8.4) (2018-04-13)
|
41
33
|
|
42
|
-
|
43
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.5.3...v2.6.0)
|
34
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.8.2...v2.8.4)
|
44
35
|
|
45
|
-
|
46
|
-
* Moving output processing into the `Sym::Application` class.
|
36
|
+
**Merged pull requests:**
|
47
37
|
|
48
|
-
|
49
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.5.2...v2.5.3)
|
38
|
+
- Faster completion by checking \_filedir [\#15](https://github.com/kigster/sym/pull/15) ([kigster](https://github.com/kigster))
|
50
39
|
|
51
|
-
|
40
|
+
## [v2.8.2](https://github.com/kigster/sym/tree/v2.8.2) (2018-01-10)
|
52
41
|
|
53
|
-
|
54
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.5.1...v2.5.2)
|
42
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.8.1...v2.8.2)
|
55
43
|
|
56
|
-
|
44
|
+
## [v2.8.1](https://github.com/kigster/sym/tree/v2.8.1) (2018-01-07)
|
57
45
|
|
58
|
-
|
59
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.5.0...v2.5.1)
|
46
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.8.0...v2.8.1)
|
60
47
|
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
48
|
+
## [v2.8.0](https://github.com/kigster/sym/tree/v2.8.0) (2018-01-06)
|
49
|
+
|
50
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.7.0...v2.8.0)
|
51
|
+
|
52
|
+
**Merged pull requests:**
|
53
|
+
|
54
|
+
- Changing -t to expect a file argument; Version 2.7.0 [\#13](https://github.com/kigster/sym/pull/13) ([kigster](https://github.com/kigster))
|
55
|
+
|
56
|
+
## [v2.7.0](https://github.com/kigster/sym/tree/v2.7.0) (2017-06-23)
|
57
|
+
|
58
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.6.3...v2.7.0)
|
59
|
+
|
60
|
+
## [v2.6.3](https://github.com/kigster/sym/tree/v2.6.3) (2017-03-13)
|
61
|
+
|
62
|
+
[Full Changelog](https://github.com/kigster/sym/compare/st...v2.6.3)
|
63
|
+
|
64
|
+
## [st](https://github.com/kigster/sym/tree/st) (2017-03-13)
|
65
|
+
|
66
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.6.2...st)
|
67
|
+
|
68
|
+
**Closed issues:**
|
69
|
+
|
70
|
+
- \[feature\] Speed up RSpec tests by running Aruba tests in process, and skipping DRb [\#11](https://github.com/kigster/sym/issues/11)
|
71
|
+
- \[feature\] need an easy way to decrypt and load encrypted settings file into memory [\#9](https://github.com/kigster/sym/issues/9)
|
72
|
+
|
73
|
+
**Merged pull requests:**
|
74
|
+
|
75
|
+
- Switch to faster in process ARUBA [\#10](https://github.com/kigster/sym/pull/10) ([kigster](https://github.com/kigster))
|
76
|
+
|
77
|
+
## [v2.6.2](https://github.com/kigster/sym/tree/v2.6.2) (2017-03-12)
|
78
|
+
|
79
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.6.1...v2.6.2)
|
80
|
+
|
81
|
+
## [v2.6.1](https://github.com/kigster/sym/tree/v2.6.1) (2017-03-12)
|
67
82
|
|
68
|
-
* Updated README
|
69
|
-
* Remove `-M` flag; make `SYM_ARGS` environment be only used when `-A` flag is supplied
|
70
|
-
* Change `--bash-completion` to use `-B`
|
71
|
-
* Major fix up for sym.completion
|
72
|
-
## [v2.6.1](https://github.com/kigster/sym/tree/v2.6.1) (2017-03-11)
|
73
83
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.6.0...v2.6.1)
|
74
84
|
|
75
|
-
## [v2.6.0](https://github.com/kigster/sym/tree/v2.6.0) (2017-03-
|
85
|
+
## [v2.6.0](https://github.com/kigster/sym/tree/v2.6.0) (2017-03-12)
|
86
|
+
|
76
87
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.5.3...v2.6.0)
|
77
88
|
|
78
|
-
|
79
|
-
* Moving output processing into the `Sym::Application` class.
|
89
|
+
## [v2.5.3](https://github.com/kigster/sym/tree/v2.5.3) (2017-03-11)
|
80
90
|
|
81
|
-
## [v2.5.3](https://github.com/kigster/sym/tree/v2.5.3) (2017-03-09)
|
82
91
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.5.2...v2.5.3)
|
83
92
|
|
84
|
-
|
93
|
+
## [v2.5.2](https://github.com/kigster/sym/tree/v2.5.2) (2017-03-11)
|
85
94
|
|
86
|
-
## [v2.5.2](https://github.com/kigster/sym/tree/v2.5.2) (2017-03-06)
|
87
95
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.5.1...v2.5.2)
|
88
96
|
|
89
|
-
|
97
|
+
## [v2.5.1](https://github.com/kigster/sym/tree/v2.5.1) (2017-03-07)
|
90
98
|
|
91
|
-
## [v2.5.1](https://github.com/kigster/sym/tree/v2.5.0) (2017-03-06)
|
92
99
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.5.0...v2.5.1)
|
93
100
|
|
94
|
-
|
95
|
-
|
96
|
-
* Updated `Sym::Constants` module.
|
97
|
-
|
98
|
-
## [v2.5.0](https://github.com/kigster/sym/tree/v2.5.0) (2017-03-04)
|
101
|
+
## [v2.5.0](https://github.com/kigster/sym/tree/v2.5.0) (2017-03-05)
|
102
|
+
|
99
103
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.4.3...v2.5.0)
|
100
104
|
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
* Major fix up for sym.completion
|
105
|
-
* New file `exe/symit` for transparently editing secrets
|
106
|
-
* Reworked `Sym::Application`, removed `--dictionary`, and simplified argument parsing.
|
107
|
-
* Refactored `output_proc` to live in `application`.
|
105
|
+
## [v2.4.3](https://github.com/kigster/sym/tree/v2.4.3) (2017-03-01)
|
106
|
+
|
107
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.4.2...v2.4.3)
|
108
108
|
|
109
109
|
## [v2.4.2](https://github.com/kigster/sym/tree/v2.4.2) (2017-03-01)
|
110
|
+
|
110
111
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.4.1...v2.4.2)
|
111
112
|
|
112
|
-
|
113
|
-
to auto-complete long options as well.
|
113
|
+
## [v2.4.1](https://github.com/kigster/sym/tree/v2.4.1) (2017-03-01)
|
114
114
|
|
115
|
-
## [v2.4.1](https://github.com/kigster/sym/tree/v2.4.1) (2017-02-28)
|
116
115
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.4.0...v2.4.1)
|
117
116
|
|
118
|
-
|
119
|
-
* Refactored `application.opts` to be a hash.
|
120
|
-
* Refactored and consolidate key sources via the `Detector` class.
|
121
|
-
* Split off `KeySourceCheck` into a separate entity
|
122
|
-
* Simplified `Sym::Application`
|
123
|
-
* Removed `OrderedHash`
|
124
|
-
* Added `key_source` to logging with `-D`
|
125
|
-
* New tests.
|
126
|
-
* Fixed command ordering bug.
|
127
|
-
* Better "default" file handing, only when no options are supplied.
|
128
|
-
|
129
|
-
## [v2.4.0](https://github.com/kigster/sym/tree/v2.4.0) (2017-02-27)
|
130
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.3.0...v2.4.0)
|
117
|
+
## [v2.4.0](https://github.com/kigster/sym/tree/v2.4.0) (2017-02-28)
|
131
118
|
|
132
|
-
|
133
|
-
* Version 2.4.0
|
134
|
-
* New behavior: `-k <value>` now attempts to read a file, environment, keychain or a string.
|
135
|
-
* Removed `--keyfile / -K` (-k now accepts file)
|
136
|
-
* Removed all `require_relative` occurances, replaced with `require`
|
137
|
-
* Adding support for the default key file, stored in `~/.sym.key` by default.
|
138
|
-
* Moved all constants to `Sym::Constants`
|
139
|
-
* Added ability to map legacy (deprecated) flags
|
140
|
-
* Auto-disabling color when STDOUT is not a tty
|
141
|
-
* Changed Password Cache flags:
|
142
|
-
* Replaced `-C` with `-c` (to enable cache)
|
143
|
-
* Replaced `-T` with `-u` for timeout
|
144
|
-
* Replaced `-P` with `-r` for provider
|
145
|
-
* Changed `-A` (trace) to `-T`
|
146
|
-
* Now adding password to the cache upon generation
|
147
|
-
* Adding `KeyChain.get` method
|
148
|
-
* Replacing private key `Detector` with `Reader`
|
149
|
-
* Adding logger
|
150
|
-
* Fixing handling of STDIN and STDOUT with pipes
|
151
|
-
* Deleting unused files
|
152
|
-
|
153
|
-
## [v2.3.0](https://github.com/kigster/sym/tree/v2.3.0) (2017-02-23)
|
154
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.2.1...v2.3.0)
|
155
|
-
|
156
|
-
* Improving output, especially as it pertains to error reporting
|
157
|
-
* Split encrypt_decrypt command into encrypt and decrypt
|
158
|
-
* Fix permissions before `rake build`
|
159
|
-
* Improve Yard Doc by moving `Kernel` and `Object` monkey-patching
|
160
|
-
into `lib/sym/extensions/stdlib.rb`
|
161
|
-
|
162
|
-
## [v2.2.1](https://github.com/kigster/sym/tree/v2.2.1) (2017-02-15)
|
163
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.2.0...v2.2.1)
|
119
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.3.0...v2.4.0)
|
164
120
|
|
165
|
-
|
166
|
-
* [`c3d0b86`] (https://github.com/kigster/sym/commit/c3d0b86) Switched to using bash-completion-style syntax
|
167
|
-
* [`9368bf5`] (https://github.com/kigster/sym/commit/9368bf5) Adding CHANGELOG.md
|
121
|
+
## [v2.3.0](https://github.com/kigster/sym/tree/v2.3.0) (2017-02-25)
|
168
122
|
|
169
|
-
|
170
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.1.2...v2.2.0)
|
123
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.2.1...v2.3.0)
|
171
124
|
|
172
|
-
**
|
125
|
+
**Merged pull requests:**
|
173
126
|
|
174
|
-
|
175
|
-
* `-P < memcached | drb >` specifies caching mechanism
|
127
|
+
- This PR improves error reporting across the board [\#7](https://github.com/kigster/sym/pull/7) ([kigster](https://github.com/kigster))
|
176
128
|
|
177
|
-
|
129
|
+
## [v2.2.1](https://github.com/kigster/sym/tree/v2.2.1) (2017-02-15)
|
178
130
|
|
179
|
-
|
180
|
-
* [`ca3a903`](https://github.com/kigster/sym/commit/ca3a903/) Adding -C flag
|
181
|
-
* [`949b2ae`](https://github.com/kigster/sym/commit/949b2ae/) Updating README
|
182
|
-
* [`513f849`](https://github.com/kigster/sym/commit/513f849/) Adding MemCached provider; ability to specify provider with `-P`
|
183
|
-
* [`571e668`](https://github.com/kigster/sym/commit/571e668/) Split up Coin off to a cache provider
|
184
|
-
* [`7afeccc`](https://github.com/kigster/sym/commit/7afeccc/) Better messaging when password server times out
|
185
|
-
* [`cf226f9`](https://github.com/kigster/sym/commit/cf226f9/) Implement fast timeout for password caching providers, fixes [\#3](https://github.com/kigster/sym/issues/3)
|
131
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.2.0...v2.2.1)
|
186
132
|
|
187
|
-
**Closed
|
133
|
+
**Closed issues:**
|
188
134
|
|
189
135
|
- make sure drb is not already running/handle exception [\#3](https://github.com/kigster/sym/issues/3)
|
190
136
|
|
137
|
+
## [v2.2.0](https://github.com/kigster/sym/tree/v2.2.0) (2017-02-14)
|
191
138
|
|
139
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.1.2...v2.2.0)
|
192
140
|
|
193
141
|
## [v2.1.2](https://github.com/kigster/sym/tree/v2.1.2) (2017-02-11)
|
194
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.1.1...v2.1.2)
|
195
142
|
|
196
|
-
|
197
|
-
* [`ba60592`](https://github.com/kigster/sym/commit/ba60592/) Adding TOC
|
198
|
-
* [`7b04ea9`](https://github.com/kigster/sym/commit/7b04ea9/) Updating README for the gem;
|
199
|
-
* [`52efdb4`](https://github.com/kigster/sym/commit/52efdb4/) Updating the 3.0 usage
|
143
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.1.1...v2.1.2)
|
200
144
|
|
201
145
|
## [v2.1.1](https://github.com/kigster/sym/tree/v2.1.1) (2017-02-05)
|
202
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.1.0...v2.1.1)
|
203
146
|
|
204
|
-
|
147
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.1.0...v2.1.1)
|
205
148
|
|
206
149
|
## [v2.1.0](https://github.com/kigster/sym/tree/v2.1.0) (2017-01-23)
|
207
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.0.3...v2.1.0)
|
208
150
|
|
209
|
-
|
210
|
-
* [`3a706ce`](https://github.com/kigster/sym/commit/3a706ce/) Rename Command to BaseCommand; use require
|
211
|
-
* [`77936ee`](https://github.com/kigster/sym/commit/77936ee/) Existing keys can be password-prot, and keychained
|
151
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.0.3...v2.1.0)
|
212
152
|
|
213
153
|
## [v2.0.3](https://github.com/kigster/sym/tree/v2.0.3) (2017-01-22)
|
214
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.0.2...v2.0.3)
|
215
154
|
|
216
|
-
|
217
|
-
* [`984ec27`](https://github.com/kigster/sym/commit/984ec27/) Adding CHANGELOG.
|
218
|
-
* [`4fc7983`](https://github.com/kigster/sym/commit/4fc7983/) Removing clipboard copy feature: its easy enough.
|
219
|
-
* [`4f38aa5`](https://github.com/kigster/sym/commit/4f38aa5/) Removing unnecessary file.
|
220
|
-
* [`4ff0412`](https://github.com/kigster/sym/commit/4ff0412/) Updating README with latest help
|
221
|
-
* [`787116c`](https://github.com/kigster/sym/commit/787116c/) rm NLP module, rm keychain del, add bash-comp.
|
222
|
-
* [`bf70e30`](https://github.com/kigster/sym/commit/bf70e30/) Update repo token
|
155
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.0.2...v2.0.3)
|
223
156
|
|
224
157
|
## [v2.0.2](https://github.com/kigster/sym/tree/v2.0.2) (2017-01-21)
|
225
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.0.1...v2.0.2)
|
226
158
|
|
227
|
-
|
159
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.0.1...v2.0.2)
|
228
160
|
|
229
161
|
## [v2.0.1](https://github.com/kigster/sym/tree/v2.0.1) (2017-01-20)
|
230
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.0.0...v2.0.1)
|
231
162
|
|
232
|
-
|
233
|
-
* [`8f0209e`](https://github.com/kigster/sym/commit/8f0209e/) Updating README badges
|
234
|
-
* [`0c6a612`](https://github.com/kigster/sym/commit/0c6a612/) Only use github for coin on OSX
|
235
|
-
* [`3afe846`](https://github.com/kigster/sym/commit/3afe846/) Fixed a bug with >> redirects adding newline
|
236
|
-
* [`9409cdb`](https://github.com/kigster/sym/commit/9409cdb/) Fixing bash completion for sym.
|
237
|
-
* [`7cdb062`](https://github.com/kigster/sym/commit/7cdb062/) Add .ruby-version to gitignore
|
238
|
-
* [`488cd73`](https://github.com/kigster/sym/commit/488cd73/) Using a fork of coin from github
|
239
|
-
* [`a13eb55`](https://github.com/kigster/sym/commit/a13eb55/) Adding .DS_Store to .gitignore
|
163
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.0.0...v2.0.1)
|
240
164
|
|
241
165
|
## [v2.0.0](https://github.com/kigster/sym/tree/v2.0.0) (2016-11-11)
|
242
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v1.1.2...v2.0.0)
|
243
166
|
|
244
|
-
|
167
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.7.0...v2.0.0)
|
168
|
+
|
169
|
+
## [v1.7.0](https://github.com/kigster/sym/tree/v1.7.0) (2016-10-17)
|
170
|
+
|
171
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.6.5...v1.7.0)
|
172
|
+
|
173
|
+
**Merged pull requests:**
|
174
|
+
|
175
|
+
- Password caching disabling/timeout; Version 1.7.0 [\#5](https://github.com/kigster/sym/pull/5) ([kigster](https://github.com/kigster))
|
176
|
+
|
177
|
+
## [v1.6.5](https://github.com/kigster/sym/tree/v1.6.5) (2016-09-10)
|
178
|
+
|
179
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.6.4...v1.6.5)
|
180
|
+
|
181
|
+
**Closed issues:**
|
182
|
+
|
183
|
+
- utilizing CMD class fails on ubuntu [\#2](https://github.com/kigster/sym/issues/2)
|
184
|
+
|
185
|
+
**Merged pull requests:**
|
186
|
+
|
187
|
+
- Fix error when ENV\[EDITOR\] is nil [\#18](https://github.com/kigster/sym/pull/18) ([JustinNazari](https://github.com/JustinNazari))
|
188
|
+
- added require to fix loading issue on ubuntu [\#4](https://github.com/kigster/sym/pull/4) ([bosswissam](https://github.com/bosswissam))
|
189
|
+
|
190
|
+
## [v1.6.4](https://github.com/kigster/sym/tree/v1.6.4) (2016-08-23)
|
191
|
+
|
192
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.6.3...v1.6.4)
|
193
|
+
|
194
|
+
## [v1.6.3](https://github.com/kigster/sym/tree/v1.6.3) (2016-08-22)
|
195
|
+
|
196
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.6.2...v1.6.3)
|
197
|
+
|
198
|
+
## [v1.6.2](https://github.com/kigster/sym/tree/v1.6.2) (2016-08-22)
|
199
|
+
|
200
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.6.1...v1.6.2)
|
201
|
+
|
202
|
+
## [v1.6.1](https://github.com/kigster/sym/tree/v1.6.1) (2016-08-22)
|
203
|
+
|
204
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.5.4...v1.6.1)
|
205
|
+
|
206
|
+
## [v1.5.4](https://github.com/kigster/sym/tree/v1.5.4) (2016-08-16)
|
207
|
+
|
208
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.5.3...v1.5.4)
|
209
|
+
|
210
|
+
## [v1.5.3](https://github.com/kigster/sym/tree/v1.5.3) (2016-08-16)
|
211
|
+
|
212
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.5.1...v1.5.3)
|
213
|
+
|
214
|
+
## [v1.5.1](https://github.com/kigster/sym/tree/v1.5.1) (2016-08-15)
|
215
|
+
|
216
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.5.0...v1.5.1)
|
217
|
+
|
218
|
+
## [v1.5.0](https://github.com/kigster/sym/tree/v1.5.0) (2016-08-15)
|
219
|
+
|
220
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.4.1...v1.5.0)
|
221
|
+
|
222
|
+
## [v1.4.1](https://github.com/kigster/sym/tree/v1.4.1) (2016-08-12)
|
223
|
+
|
224
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.4.0...v1.4.1)
|
225
|
+
|
226
|
+
## [v1.4.0](https://github.com/kigster/sym/tree/v1.4.0) (2016-08-12)
|
227
|
+
|
228
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.3.0...v1.4.0)
|
229
|
+
|
230
|
+
## [v1.3.0](https://github.com/kigster/sym/tree/v1.3.0) (2016-08-12)
|
231
|
+
|
232
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.2.1...v1.3.0)
|
233
|
+
|
234
|
+
## [v1.2.1](https://github.com/kigster/sym/tree/v1.2.1) (2016-08-10)
|
235
|
+
|
236
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.2.0...v1.2.1)
|
237
|
+
|
238
|
+
## [v1.2.0](https://github.com/kigster/sym/tree/v1.2.0) (2016-08-10)
|
239
|
+
|
240
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.1.2...v1.2.0)
|
241
|
+
|
242
|
+
## [v1.1.2](https://github.com/kigster/sym/tree/v1.1.2) (2016-08-09)
|
243
|
+
|
244
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.1.1...v1.1.2)
|
245
|
+
|
246
|
+
**Merged pull requests:**
|
247
|
+
|
248
|
+
- Make my pull request. [\#1](https://github.com/kigster/sym/pull/1) ([kigster](https://github.com/kigster))
|
249
|
+
|
250
|
+
## [v1.1.1](https://github.com/kigster/sym/tree/v1.1.1) (2016-08-09)
|
251
|
+
|
252
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.1.0...v1.1.1)
|
253
|
+
|
254
|
+
## [v1.1.0](https://github.com/kigster/sym/tree/v1.1.0) (2016-08-09)
|
255
|
+
|
256
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.0.2...v1.1.0)
|
257
|
+
|
258
|
+
## [v1.0.2](https://github.com/kigster/sym/tree/v1.0.2) (2016-08-07)
|
259
|
+
|
260
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.0.1...v1.0.2)
|
261
|
+
|
262
|
+
## [v1.0.1](https://github.com/kigster/sym/tree/v1.0.1) (2016-08-07)
|
263
|
+
|
264
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.0.0...v1.0.1)
|
265
|
+
|
266
|
+
## [v1.0.0](https://github.com/kigster/sym/tree/v1.0.0) (2016-08-07)
|
267
|
+
|
268
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v0.9.3...v1.0.0)
|
269
|
+
|
270
|
+
## [v0.9.3](https://github.com/kigster/sym/tree/v0.9.3) (2016-08-05)
|
271
|
+
|
272
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v0.9.1...v0.9.3)
|
273
|
+
|
274
|
+
## [v0.9.1](https://github.com/kigster/sym/tree/v0.9.1) (2016-08-05)
|
275
|
+
|
276
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v0.1.0...v0.9.1)
|
277
|
+
|
278
|
+
## [v0.1.0](https://github.com/kigster/sym/tree/v0.1.0) (2016-08-04)
|
279
|
+
|
280
|
+
[Full Changelog](https://github.com/kigster/sym/compare/b246254282178c0086a6c103550a089cb4962843...v0.1.0)
|
281
|
+
|
282
|
+
|
245
283
|
|
284
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|