console_runner 0.1.22 → 0.1.23

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: e171b31d108653ccdf8c7531515e3e1553fe3866
4
- data.tar.gz: f603811734ff52f35f9f66ff78c41487544d60fd
3
+ metadata.gz: 85869369fb705b14a43d991b73ef59719dd0456c
4
+ data.tar.gz: 79921ee7be2715476e9e778538feaf7f59608c94
5
5
  SHA512:
6
- metadata.gz: ec9180e24ff1a0631e8018781aeb5703d603aad5e92a696a1ff03c08ee68357c2ee06b19999bddfb21fcb70a027b46e9243e28a84c094fca09f78b1308702e40
7
- data.tar.gz: a3cd6c03ed49e51b9350af7ffa22a10200ebd09d6cd973f944036dba661d24b383290371be26767b61572aea97938c3d28f9a8483637d92d3c4377e3ff487d99
6
+ metadata.gz: e7c25099ea28d05f86ea552a991fc93dee2ea12f2388706db813c38fc0ae1cf8635ad3710715ecb9d2d4bb975c80d0d1422d61bbe8436251be6479db022e6096
7
+ data.tar.gz: 1d71c7e7d8c1864b6805b0a8eebfe4aadff6c6c80ef2af8c61f8793311e924814f3ea52d4c1a631556e95184c7107b2b8da2b4a564abcb163eaf447949271a80
@@ -8,9 +8,7 @@ module ConsoleRunner
8
8
  begin
9
9
  start_time = Time.now
10
10
  success_status = true
11
- puts "#{SEPARATOR}
12
- Start Time: #{start_time}
13
- #{SEPARATOR}".blue
11
+ puts "#{SEPARATOR}\nStart Time: #{start_time}\n#{SEPARATOR}".blue
14
12
 
15
13
  file_from_arg = ARGV.shift
16
14
  raise ConsoleRunnerError, 'Specify file to be executed' unless file_from_arg
@@ -70,7 +68,6 @@ Start Time: #{start_time}
70
68
  puts "\n#{SEPARATOR}".blue
71
69
  puts 'Execution status: '.blue + status
72
70
  puts "Finish Time: #{finish_time} (Duration: #{((finish_time - start_time) / 60).round(2) } minutes)
73
- #{SEPARATOR}
74
- ".blue
71
+ #{SEPARATOR}\n".blue
75
72
  end
76
73
  end
@@ -1,3 +1,3 @@
1
1
  module ConsoleRunner
2
- VERSION = '0.1.22'
2
+ VERSION = '0.1.23'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: console_runner
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.22
4
+ version: 0.1.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yury Karpovich