command_timer 0.0.5 → 0.0.6

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.
@@ -3,7 +3,7 @@ module CommandTimer
3
3
  def initialize(yml, options = {})
4
4
  @commands = Parser.parse(yml)
5
5
  echo_commands
6
- @count_down = options['count_down'] || 15
6
+ @count_down = options['count_down'] || 30
7
7
  @ntp_server = options['ntp_server']
8
8
  end
9
9
 
@@ -11,6 +11,7 @@ module CommandTimer
11
11
  @commands.each_with_index do |command, index|
12
12
  puts "####################"
13
13
  puts "# Next: Command#{index + 1}"
14
+ puts "# #{command.description}" if command.description
14
15
  puts "####################"
15
16
  if command.burn_time
16
17
  count_down_and_burn_command(command)
@@ -71,6 +72,7 @@ module CommandTimer
71
72
  command.echo_command
72
73
  end
73
74
  puts "--------------------"
75
+ puts ""
74
76
  end
75
77
  end
76
78
  end
@@ -1,3 +1,3 @@
1
1
  module CommandTimer
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: command_timer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: