agile_utils 0.0.4 → 0.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fb264c2409c9d987dc4047e74a706b8af6fd51de
4
- data.tar.gz: 45aa72279caed54a4e090d80ba97267946f7650c
3
+ metadata.gz: 3cbac9d06fb1c7dd4ef644d27fd713a717aa0be8
4
+ data.tar.gz: 37f4980fc2fc64755447eb5c99d0ea5d42f79723
5
5
  SHA512:
6
- metadata.gz: 03b74a8421a3ca5ba677e1d90ad5b0f9ee50f5416cf57c7446b0bad2c9f45ea2f38334b69de8fcd03b838a41aaa66ac006c0570b85cdf44d4a0f86d3f5e0d5bb
7
- data.tar.gz: 0280f0d4a578fae6e76d7ba0b1c81c978a4d1d31b5143f49bbc8bbdab2616cda0feaddca283565b7849b548a3c28d2d01fa09b6ade7add51ade7cc553d1e3259
6
+ metadata.gz: 3c4bc9388809634fc2da659a2a5f5abceee10bf424b02018a479f0fd1e8b173aaf1fbfcc60d8376309bd287d8de57e7120cacb5d226eb17b93eae2c4c88b0a5d
7
+ data.tar.gz: d628a49200d500a80ca23c18c67bb03d61a05fdadd8623fbe4d2714bb58431037a27c8ab2b311ac73cd613c9d3c222ceb753366b0e4d693ce4eafd60ff9f4c71
data/README.md CHANGED
@@ -44,6 +44,11 @@ AgileUtils::FileUtils.tar_gzip_files()
44
44
 
45
45
  ### Changelogs
46
46
 
47
+ #### 0.0.5
48
+
49
+ - Correct the short option for '--exc-words'
50
+ - Show list of apis for default usage
51
+
47
52
  #### 0.0.3 - 0.0.4
48
53
 
49
54
  - Add more functions
@@ -38,8 +38,8 @@ module AgileUtils
38
38
  EXC_WORDS = [
39
39
  :exc_words,
40
40
  { type: :array,
41
- aliases: '-n',
42
- desc: 'List of words to be included in the result',
41
+ aliases: '-x',
42
+ desc: 'List of words to be excluded from the result',
43
43
  default: [] }
44
44
  ]
45
45
 
@@ -15,7 +15,23 @@ module AgileUtils
15
15
  desc "usage", "Display help screen"
16
16
  def usage
17
17
  puts <<-EOS
18
- Add your usage here.
18
+ # List of available APIs
19
+ require 'agile_utils'
20
+ include AgileUtils
21
+
22
+ # Make a call to any of the following
23
+ AgileUtils::Helper.capture
24
+ AgileUtils::Helper.is_linux?
25
+ AgileUtils::Helper.is_osx?
26
+ AgileUtils::Helper.make_list
27
+ AgileUtils::Helper.shell
28
+ AgileUtils::Helper.time
29
+ AgileUtils::Helper.uname
30
+
31
+ AgileUtils::FileUtil.find()
32
+ AgileUtils::FileUtils.delete()
33
+ AgileUtils::FileUtils.gunzip()
34
+ AgileUtils::FileUtils.tar_gzip_files()
19
35
  EOS
20
36
  end
21
37
 
@@ -1,3 +1,3 @@
1
1
  module AgileUtils
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: agile_utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Burin Choomnuan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-24 00:00:00.000000000 Z
11
+ date: 2014-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor