sym 2.8.1 → 3.0.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 +31 -30
- data/.envrc +7 -0
- data/.gitignore +1 -0
- data/.rubocop.yml +150 -928
- data/.travis.yml +16 -26
- data/CHANGELOG.md +220 -167
- data/Gemfile +1 -0
- data/LICENSE +2 -2
- data/README.adoc +670 -0
- data/Rakefile +10 -4
- data/bin/changelog +34 -0
- data/bin/sym.completion.bash +6 -4
- data/bin/sym.symit.bash +412 -187
- data/codecov.yml +29 -0
- data/design/sym-class-dependency-future-refactor.png +0 -0
- data/design/sym-class-dependency-vertical.png +0 -0
- data/design/sym-class-dependency.graffle +0 -0
- data/design/sym-class-dependency.png +0 -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 +2 -8
- data/lib/sym/app.rb +1 -2
- data/lib/sym/app/args.rb +3 -2
- data/lib/sym/app/cli.rb +34 -21
- data/lib/sym/app/cli_slop.rb +9 -2
- 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 +2 -2
- 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 +39 -23
- data/lib/sym/data/wrapper_struct.rb +20 -12
- data/lib/sym/errors.rb +13 -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 +54 -5
- data/sym.gemspec +36 -35
- metadata +102 -66
- data/.codeclimate.yml +0 -30
- data/README.md +0 -623
- 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,298 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
2
|
|
3
|
-
## [
|
3
|
+
## [v2.10.1](https://github.com/kigster/sym/tree/v2.10.1) (2020-08-15)
|
4
4
|
|
5
|
-
[
|
5
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.10.0...v2.10.1)
|
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
|
+
- This gem is failing on environment without HOME \(like AWS Lambda\) [\#25](https://github.com/kigster/sym/issues/25)
|
11
10
|
|
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
|
11
|
+
**Merged pull requests:**
|
17
12
|
|
18
|
-
|
19
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.6.3...v2.7.0)
|
13
|
+
- Refactor and changes to support custom user\_home. [\#30](https://github.com/kigster/sym/pull/30) ([kigster](https://github.com/kigster))
|
20
14
|
|
21
|
-
|
22
|
-
for "-f file" in addition to "-t"
|
23
|
-
* Adding 'irbtools' to development gems.
|
15
|
+
## [v2.10.0](https://github.com/kigster/sym/tree/v2.10.0) (2020-08-14)
|
24
16
|
|
25
|
-
|
26
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.6.2...v2.6.3)
|
17
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.8.5...v2.10.0)
|
27
18
|
|
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.
|
19
|
+
**Closed issues:**
|
31
20
|
|
32
|
-
|
33
|
-
[
|
21
|
+
- Switch to Codecov for test coverage [\#29](https://github.com/kigster/sym/issues/29)
|
22
|
+
- Ruby 2.7 warnings [\#24](https://github.com/kigster/sym/issues/24)
|
23
|
+
- Error and process hang on Windows [\#17](https://github.com/kigster/sym/issues/17)
|
34
24
|
|
35
|
-
|
25
|
+
**Merged pull requests:**
|
36
26
|
|
37
|
-
|
38
|
-
[
|
27
|
+
- Switch to Codecov for test coverage; version bump 2.10.0 [\#28](https://github.com/kigster/sym/pull/28) ([kigster](https://github.com/kigster))
|
28
|
+
- Fix remaining 2.7 warnings; memcached & keychain [\#27](https://github.com/kigster/sym/pull/27) ([kigster](https://github.com/kigster))
|
29
|
+
- Adding Rubocop, and fixing minor issues. [\#21](https://github.com/kigster/sym/pull/21) ([kigster](https://github.com/kigster))
|
30
|
+
- First pass on Version 2.9.0 — dropping the coin gem [\#20](https://github.com/kigster/sym/pull/20) ([kigster](https://github.com/kigster))
|
31
|
+
- CI: Update matrix [\#19](https://github.com/kigster/sym/pull/19) ([olleolleolle](https://github.com/olleolleolle))
|
39
32
|
|
40
|
-
|
33
|
+
## [v2.8.5](https://github.com/kigster/sym/tree/v2.8.5) (2018-10-13)
|
41
34
|
|
42
|
-
|
43
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.5.3...v2.6.0)
|
35
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.8.4...v2.8.5)
|
44
36
|
|
45
|
-
|
46
|
-
* Moving output processing into the `Sym::Application` class.
|
37
|
+
**Closed issues:**
|
47
38
|
|
48
|
-
|
49
|
-
[
|
39
|
+
- \[feature\] Allow sym to use a password protected key without interactive input [\#12](https://github.com/kigster/sym/issues/12)
|
40
|
+
- \[feature\] support yaml mapping of file pattern to key names [\#8](https://github.com/kigster/sym/issues/8)
|
50
41
|
|
51
|
-
|
42
|
+
**Merged pull requests:**
|
52
43
|
|
53
|
-
|
54
|
-
[
|
44
|
+
- Fix error when ENV\[EDITOR\] is nil [\#18](https://github.com/kigster/sym/pull/18) ([JustinNazari](https://github.com/JustinNazari))
|
45
|
+
- README: Use SVG badge \[ci skip\] [\#16](https://github.com/kigster/sym/pull/16) ([olleolleolle](https://github.com/olleolleolle))
|
55
46
|
|
56
|
-
|
47
|
+
## [v2.8.4](https://github.com/kigster/sym/tree/v2.8.4) (2018-04-13)
|
57
48
|
|
58
|
-
|
59
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.5.0...v2.5.1)
|
49
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.8.2...v2.8.4)
|
60
50
|
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
## [v2.
|
66
|
-
|
51
|
+
**Merged pull requests:**
|
52
|
+
|
53
|
+
- Faster completion by checking \_filedir [\#15](https://github.com/kigster/sym/pull/15) ([kigster](https://github.com/kigster))
|
54
|
+
|
55
|
+
## [v2.8.2](https://github.com/kigster/sym/tree/v2.8.2) (2018-01-10)
|
56
|
+
|
57
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.8.1...v2.8.2)
|
58
|
+
|
59
|
+
## [v2.8.1](https://github.com/kigster/sym/tree/v2.8.1) (2018-01-07)
|
60
|
+
|
61
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.8.0...v2.8.1)
|
62
|
+
|
63
|
+
## [v2.8.0](https://github.com/kigster/sym/tree/v2.8.0) (2018-01-06)
|
64
|
+
|
65
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.7.0...v2.8.0)
|
66
|
+
|
67
|
+
**Merged pull requests:**
|
68
|
+
|
69
|
+
- Changing -t to expect a file argument; Version 2.7.0 [\#13](https://github.com/kigster/sym/pull/13) ([kigster](https://github.com/kigster))
|
70
|
+
|
71
|
+
## [v2.7.0](https://github.com/kigster/sym/tree/v2.7.0) (2017-06-23)
|
72
|
+
|
73
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.6.3...v2.7.0)
|
74
|
+
|
75
|
+
## [v2.6.3](https://github.com/kigster/sym/tree/v2.6.3) (2017-03-13)
|
76
|
+
|
77
|
+
[Full Changelog](https://github.com/kigster/sym/compare/st...v2.6.3)
|
78
|
+
|
79
|
+
## [st](https://github.com/kigster/sym/tree/st) (2017-03-13)
|
80
|
+
|
81
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.6.2...st)
|
82
|
+
|
83
|
+
**Closed issues:**
|
84
|
+
|
85
|
+
- \[feature\] Speed up RSpec tests by running Aruba tests in process, and skipping DRb [\#11](https://github.com/kigster/sym/issues/11)
|
86
|
+
- \[feature\] need an easy way to decrypt and load encrypted settings file into memory [\#9](https://github.com/kigster/sym/issues/9)
|
87
|
+
|
88
|
+
**Merged pull requests:**
|
89
|
+
|
90
|
+
- Switch to faster in process ARUBA [\#10](https://github.com/kigster/sym/pull/10) ([kigster](https://github.com/kigster))
|
91
|
+
|
92
|
+
## [v2.6.2](https://github.com/kigster/sym/tree/v2.6.2) (2017-03-12)
|
93
|
+
|
94
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.6.1...v2.6.2)
|
95
|
+
|
96
|
+
## [v2.6.1](https://github.com/kigster/sym/tree/v2.6.1) (2017-03-12)
|
67
97
|
|
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
98
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.6.0...v2.6.1)
|
74
99
|
|
75
|
-
## [v2.6.0](https://github.com/kigster/sym/tree/v2.6.0) (2017-03-
|
100
|
+
## [v2.6.0](https://github.com/kigster/sym/tree/v2.6.0) (2017-03-12)
|
101
|
+
|
76
102
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.5.3...v2.6.0)
|
77
103
|
|
78
|
-
|
79
|
-
* Moving output processing into the `Sym::Application` class.
|
104
|
+
## [v2.5.3](https://github.com/kigster/sym/tree/v2.5.3) (2017-03-11)
|
80
105
|
|
81
|
-
## [v2.5.3](https://github.com/kigster/sym/tree/v2.5.3) (2017-03-09)
|
82
106
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.5.2...v2.5.3)
|
83
107
|
|
84
|
-
|
108
|
+
## [v2.5.2](https://github.com/kigster/sym/tree/v2.5.2) (2017-03-11)
|
85
109
|
|
86
|
-
## [v2.5.2](https://github.com/kigster/sym/tree/v2.5.2) (2017-03-06)
|
87
110
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.5.1...v2.5.2)
|
88
111
|
|
89
|
-
|
112
|
+
## [v2.5.1](https://github.com/kigster/sym/tree/v2.5.1) (2017-03-07)
|
90
113
|
|
91
|
-
## [v2.5.1](https://github.com/kigster/sym/tree/v2.5.0) (2017-03-06)
|
92
114
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.5.0...v2.5.1)
|
93
115
|
|
94
|
-
|
95
|
-
|
96
|
-
* Updated `Sym::Constants` module.
|
97
|
-
|
98
|
-
## [v2.5.0](https://github.com/kigster/sym/tree/v2.5.0) (2017-03-04)
|
116
|
+
## [v2.5.0](https://github.com/kigster/sym/tree/v2.5.0) (2017-03-05)
|
117
|
+
|
99
118
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.4.3...v2.5.0)
|
100
119
|
|
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`.
|
120
|
+
## [v2.4.3](https://github.com/kigster/sym/tree/v2.4.3) (2017-03-01)
|
121
|
+
|
122
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.4.2...v2.4.3)
|
108
123
|
|
109
124
|
## [v2.4.2](https://github.com/kigster/sym/tree/v2.4.2) (2017-03-01)
|
125
|
+
|
110
126
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.4.1...v2.4.2)
|
111
127
|
|
112
|
-
|
113
|
-
to auto-complete long options as well.
|
128
|
+
## [v2.4.1](https://github.com/kigster/sym/tree/v2.4.1) (2017-03-01)
|
114
129
|
|
115
|
-
## [v2.4.1](https://github.com/kigster/sym/tree/v2.4.1) (2017-02-28)
|
116
130
|
[Full Changelog](https://github.com/kigster/sym/compare/v2.4.0...v2.4.1)
|
117
131
|
|
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)
|
132
|
+
## [v2.4.0](https://github.com/kigster/sym/tree/v2.4.0) (2017-02-28)
|
131
133
|
|
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)
|
134
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.3.0...v2.4.0)
|
164
135
|
|
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
|
136
|
+
## [v2.3.0](https://github.com/kigster/sym/tree/v2.3.0) (2017-02-25)
|
168
137
|
|
169
|
-
|
170
|
-
[Full Changelog](https://github.com/kigster/sym/compare/v2.1.2...v2.2.0)
|
138
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.2.1...v2.3.0)
|
171
139
|
|
172
|
-
**
|
140
|
+
**Merged pull requests:**
|
173
141
|
|
174
|
-
|
175
|
-
* `-P < memcached | drb >` specifies caching mechanism
|
142
|
+
- This PR improves error reporting across the board [\#7](https://github.com/kigster/sym/pull/7) ([kigster](https://github.com/kigster))
|
176
143
|
|
177
|
-
|
144
|
+
## [v2.2.1](https://github.com/kigster/sym/tree/v2.2.1) (2017-02-15)
|
178
145
|
|
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)
|
146
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.2.0...v2.2.1)
|
186
147
|
|
187
|
-
**Closed
|
148
|
+
**Closed issues:**
|
188
149
|
|
189
150
|
- make sure drb is not already running/handle exception [\#3](https://github.com/kigster/sym/issues/3)
|
190
151
|
|
152
|
+
## [v2.2.0](https://github.com/kigster/sym/tree/v2.2.0) (2017-02-14)
|
191
153
|
|
154
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.1.2...v2.2.0)
|
192
155
|
|
193
156
|
## [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
157
|
|
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
|
158
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.1.1...v2.1.2)
|
200
159
|
|
201
160
|
## [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
161
|
|
204
|
-
|
162
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.1.0...v2.1.1)
|
205
163
|
|
206
164
|
## [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
165
|
|
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
|
166
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.0.3...v2.1.0)
|
212
167
|
|
213
168
|
## [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
169
|
|
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
|
170
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.0.2...v2.0.3)
|
223
171
|
|
224
172
|
## [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
173
|
|
227
|
-
|
174
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.0.1...v2.0.2)
|
228
175
|
|
229
176
|
## [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
177
|
|
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
|
178
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v2.0.0...v2.0.1)
|
240
179
|
|
241
180
|
## [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
181
|
|
244
|
-
|
182
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.7.0...v2.0.0)
|
183
|
+
|
184
|
+
## [v1.7.0](https://github.com/kigster/sym/tree/v1.7.0) (2016-10-17)
|
185
|
+
|
186
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.6.5...v1.7.0)
|
187
|
+
|
188
|
+
**Merged pull requests:**
|
189
|
+
|
190
|
+
- Password caching disabling/timeout; Version 1.7.0 [\#5](https://github.com/kigster/sym/pull/5) ([kigster](https://github.com/kigster))
|
191
|
+
|
192
|
+
## [v1.6.5](https://github.com/kigster/sym/tree/v1.6.5) (2016-09-10)
|
193
|
+
|
194
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.6.4...v1.6.5)
|
195
|
+
|
196
|
+
**Closed issues:**
|
197
|
+
|
198
|
+
- utilizing CMD class fails on ubuntu [\#2](https://github.com/kigster/sym/issues/2)
|
199
|
+
|
200
|
+
**Merged pull requests:**
|
201
|
+
|
202
|
+
- added require to fix loading issue on ubuntu [\#4](https://github.com/kigster/sym/pull/4) ([bosswissam](https://github.com/bosswissam))
|
203
|
+
|
204
|
+
## [v1.6.4](https://github.com/kigster/sym/tree/v1.6.4) (2016-08-23)
|
205
|
+
|
206
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.6.3...v1.6.4)
|
207
|
+
|
208
|
+
## [v1.6.3](https://github.com/kigster/sym/tree/v1.6.3) (2016-08-22)
|
209
|
+
|
210
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.6.2...v1.6.3)
|
211
|
+
|
212
|
+
## [v1.6.2](https://github.com/kigster/sym/tree/v1.6.2) (2016-08-22)
|
213
|
+
|
214
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.6.1...v1.6.2)
|
215
|
+
|
216
|
+
## [v1.6.1](https://github.com/kigster/sym/tree/v1.6.1) (2016-08-22)
|
217
|
+
|
218
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.5.4...v1.6.1)
|
219
|
+
|
220
|
+
## [v1.5.4](https://github.com/kigster/sym/tree/v1.5.4) (2016-08-16)
|
221
|
+
|
222
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.5.3...v1.5.4)
|
223
|
+
|
224
|
+
## [v1.5.3](https://github.com/kigster/sym/tree/v1.5.3) (2016-08-16)
|
225
|
+
|
226
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.5.1...v1.5.3)
|
227
|
+
|
228
|
+
## [v1.5.1](https://github.com/kigster/sym/tree/v1.5.1) (2016-08-15)
|
229
|
+
|
230
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.5.0...v1.5.1)
|
231
|
+
|
232
|
+
## [v1.5.0](https://github.com/kigster/sym/tree/v1.5.0) (2016-08-15)
|
233
|
+
|
234
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.4.1...v1.5.0)
|
235
|
+
|
236
|
+
## [v1.4.1](https://github.com/kigster/sym/tree/v1.4.1) (2016-08-12)
|
237
|
+
|
238
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.4.0...v1.4.1)
|
239
|
+
|
240
|
+
## [v1.4.0](https://github.com/kigster/sym/tree/v1.4.0) (2016-08-12)
|
241
|
+
|
242
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.3.0...v1.4.0)
|
243
|
+
|
244
|
+
## [v1.3.0](https://github.com/kigster/sym/tree/v1.3.0) (2016-08-12)
|
245
|
+
|
246
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.2.1...v1.3.0)
|
247
|
+
|
248
|
+
## [v1.2.1](https://github.com/kigster/sym/tree/v1.2.1) (2016-08-10)
|
249
|
+
|
250
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.2.0...v1.2.1)
|
251
|
+
|
252
|
+
## [v1.2.0](https://github.com/kigster/sym/tree/v1.2.0) (2016-08-10)
|
253
|
+
|
254
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.1.2...v1.2.0)
|
255
|
+
|
256
|
+
## [v1.1.2](https://github.com/kigster/sym/tree/v1.1.2) (2016-08-09)
|
257
|
+
|
258
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.1.1...v1.1.2)
|
259
|
+
|
260
|
+
**Merged pull requests:**
|
261
|
+
|
262
|
+
- Make my pull request. [\#1](https://github.com/kigster/sym/pull/1) ([kigster](https://github.com/kigster))
|
263
|
+
|
264
|
+
## [v1.1.1](https://github.com/kigster/sym/tree/v1.1.1) (2016-08-09)
|
265
|
+
|
266
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.1.0...v1.1.1)
|
267
|
+
|
268
|
+
## [v1.1.0](https://github.com/kigster/sym/tree/v1.1.0) (2016-08-09)
|
269
|
+
|
270
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.0.2...v1.1.0)
|
271
|
+
|
272
|
+
## [v1.0.2](https://github.com/kigster/sym/tree/v1.0.2) (2016-08-07)
|
273
|
+
|
274
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.0.1...v1.0.2)
|
275
|
+
|
276
|
+
## [v1.0.1](https://github.com/kigster/sym/tree/v1.0.1) (2016-08-07)
|
277
|
+
|
278
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v1.0.0...v1.0.1)
|
279
|
+
|
280
|
+
## [v1.0.0](https://github.com/kigster/sym/tree/v1.0.0) (2016-08-07)
|
281
|
+
|
282
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v0.9.3...v1.0.0)
|
283
|
+
|
284
|
+
## [v0.9.3](https://github.com/kigster/sym/tree/v0.9.3) (2016-08-05)
|
285
|
+
|
286
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v0.9.1...v0.9.3)
|
287
|
+
|
288
|
+
## [v0.9.1](https://github.com/kigster/sym/tree/v0.9.1) (2016-08-05)
|
289
|
+
|
290
|
+
[Full Changelog](https://github.com/kigster/sym/compare/v0.1.0...v0.9.1)
|
291
|
+
|
292
|
+
## [v0.1.0](https://github.com/kigster/sym/tree/v0.1.0) (2016-08-04)
|
293
|
+
|
294
|
+
[Full Changelog](https://github.com/kigster/sym/compare/b246254282178c0086a6c103550a089cb4962843...v0.1.0)
|
295
|
+
|
296
|
+
|
245
297
|
|
298
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|