cliutils 1.2.0 → 1.2.1
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 +4 -4
- data/Gemfile.lock +1 -1
- data/HISTORY.md +5 -0
- data/README.md +2 -2
- data/lib/cliutils/version.rb +1 -1
- data/test/prefs_test.rb +4 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38dd50eb1ac467b9bad06c3ce13982e69cfa15de
|
4
|
+
data.tar.gz: 98e93e737188b2b082d85a9b77b4ad867d25ff47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed94893b5ac1876190d39450e5a67a78d5c5cf0ea916880f4096d101fd373fad95143984552b1cdba3457562abf7fec7f8e3c4f1156bc843ee64c43940370a99
|
7
|
+
data.tar.gz: 4bf24c32bc34951d9261d74612d6c8d2f8acf77df6a90ce11fbb20c957f0628e59d5e11ad983b7aba1f8a83565b6135aacaafaa448e6d6950978c827be2db698
|
data/Gemfile.lock
CHANGED
data/HISTORY.md
CHANGED
data/README.md
CHANGED
@@ -450,9 +450,9 @@ In this case, `Prefs` will look to see if any values already exist for a specifi
|
|
450
450
|
|
451
451
|
# Bugs and Feature Requests
|
452
452
|
|
453
|
-
To
|
453
|
+
To view my current roadmap and objectives, check out the [Trello board](https://trello.com/b/qXs7Yeir/cliutils "CLIUtils on Trello").
|
454
454
|
|
455
|
-
|
455
|
+
To report bugs with or suggest features/changes for CLIUtils, please use the [Issues Page](http://github.com/bachya/cli-utils/issues).
|
456
456
|
|
457
457
|
# Contributing
|
458
458
|
|
data/lib/cliutils/version.rb
CHANGED
data/test/prefs_test.rb
CHANGED
@@ -1,9 +1,10 @@
|
|
1
|
-
require 'cliutils/ext/hash+extensions'
|
2
|
-
require 'cliutils/prefs'
|
3
|
-
require 'cliutils/prefs/pref'
|
4
1
|
require 'test/unit'
|
5
2
|
require 'yaml'
|
6
3
|
|
4
|
+
require File.join(File.dirname(__FILE__), '..', 'lib/cliutils/ext/Hash+Extensions')
|
5
|
+
require File.join(File.dirname(__FILE__), '..', 'lib/cliutils/prefs')
|
6
|
+
require File.join(File.dirname(__FILE__), '..', 'lib/cliutils/prefs/pref')
|
7
|
+
|
7
8
|
class TestPrefs < Test::Unit::TestCase
|
8
9
|
def setup
|
9
10
|
@prefs_arr = [{:prompt=>"Where is your SSH public key located?", :config_key=>"pub_key", :config_section=>"personal_info", :behaviors=>["local_filepath"]}]
|