cliutils 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6f244aff7b8639cf70d06eee8bef9f69d1ccaced
4
- data.tar.gz: 16845634a0d353037b7c60f200bc76788abc73b7
3
+ metadata.gz: 38dd50eb1ac467b9bad06c3ce13982e69cfa15de
4
+ data.tar.gz: 98e93e737188b2b082d85a9b77b4ad867d25ff47
5
5
  SHA512:
6
- metadata.gz: 78b54b0002d6c07b1189983782b46462c2db1225b573d5924af0d53059f2a01925421c0cc2160b4410021c04d6985f739d2f695c02b6f744d5a1044c2f693807
7
- data.tar.gz: 769aaa4b4026175ef9c4bcce2aa373639472759f5fcad62df3a90d4169316e6cdccf3f3ddbcde9b41b8d1b923942365716535aefb1edc521c0d19984fe49590f
6
+ metadata.gz: ed94893b5ac1876190d39450e5a67a78d5c5cf0ea916880f4096d101fd373fad95143984552b1cdba3457562abf7fec7f8e3c4f1156bc843ee64c43940370a99
7
+ data.tar.gz: 4bf24c32bc34951d9261d74612d6c8d2f8acf77df6a90ce11fbb20c957f0628e59d5e11ad983b7aba1f8a83565b6135aacaafaa448e6d6950978c827be2db698
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cliutils (1.2.0)
4
+ cliutils (1.2.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/HISTORY.md CHANGED
@@ -1,3 +1,8 @@
1
+ # 1.1.1 (2014-04-03)
2
+
3
+ * Updated documentation
4
+ * Added additional testing
5
+
1
6
  # 1.1.0 (2014-04-03)
2
7
 
3
8
  * Changed Requirements => Prerequisites in Prefs
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 report bugs with or suggest features/changes for CLIUtils, please use the [Issues Page](http://github.com/bachya/cli-utils/issues).
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
- * Trello Board: [https://trello.com/b/qXs7Yeir/cliutils](https://trello.com/b/qXs7Yeir/cliutils "CLIUtils on Trello")
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
 
@@ -1,4 +1,4 @@
1
1
  module CLIUtils
2
2
  # The current version of the gem
3
- VERSION = '1.2.0'
3
+ VERSION = '1.2.1'
4
4
  end
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"]}]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cliutils
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Bach