rest-terminal 0.1.3 → 0.1.4

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.
data/lib/rest/terminal.rb CHANGED
@@ -39,11 +39,11 @@ module Rest
39
39
  require 'rest/terminal/commands_info'
40
40
  puts ("="*65).yellow
41
41
  commands.sort.each do |x|
42
- help_line = "#{x}_line"
43
- puts " #{x.ljust(10)}#{send(help_line)}"
42
+ help_line = send("#{x}_line")
43
+ puts " #{x.ljust(10)}#{help_line}"
44
44
  end
45
45
  puts ("-"*65).yellow
46
- puts "for detail explanation on each command"
46
+ puts "for detail explanation on each commands"
47
47
  puts "type: #{'rest help xxx'.green} #xxx: command to know"
48
48
  else
49
49
  invalid_command
@@ -15,6 +15,10 @@ module Rest
15
15
  "change current service"
16
16
  end
17
17
 
18
+ def help_line
19
+ "detail help information"
20
+ end
21
+
18
22
  def headers_line
19
23
  "view or set var: headers"
20
24
  end
@@ -81,6 +85,11 @@ module Rest
81
85
  "use rest info to know all"
82
86
  end
83
87
 
88
+ def help_help
89
+ "view command information\n"
90
+ "Ex: rest help add cd info".intense_green
91
+ end
92
+
84
93
  def history_help
85
94
  "view history last command call\n"
86
95
  "Ex: rest history".intense_green
data/lib/rest/version.rb CHANGED
@@ -23,7 +23,7 @@ module Rest
23
23
 
24
24
  # :nodoc:
25
25
  def patch
26
- 3
26
+ 4
27
27
  end
28
28
 
29
29
  # :nodoc:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rest-terminal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: