update 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/update/red-green.rb +1 -1
- data/lib/update/version.rb +1 -1
- data/lib/update.rb +40 -2
- metadata +5 -6
- data/lib/update/base.rb +0 -36
data/lib/update/red-green.rb
CHANGED
data/lib/update/version.rb
CHANGED
data/lib/update.rb
CHANGED
@@ -1,4 +1,42 @@
|
|
1
|
-
require "update/base"
|
2
1
|
require "update/commands"
|
3
2
|
require "update/red-green"
|
4
|
-
require "update/version"
|
3
|
+
require "update/version"
|
4
|
+
|
5
|
+
module Update
|
6
|
+
extend RedGreen
|
7
|
+
|
8
|
+
class << self
|
9
|
+
def run
|
10
|
+
run_each_command
|
11
|
+
report_final_status
|
12
|
+
end
|
13
|
+
|
14
|
+
private
|
15
|
+
|
16
|
+
def run_each_command
|
17
|
+
Update::COMMANDS.each do |command, description|
|
18
|
+
green description
|
19
|
+
puts `#{command}`
|
20
|
+
check_for_failures command
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
def check_for_failures command
|
25
|
+
unless $?.success?
|
26
|
+
@failed_commands ||= []
|
27
|
+
@failed_commands << command
|
28
|
+
red "Command failed."
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def report_final_status
|
33
|
+
if @failed_commands
|
34
|
+
red "Update process completed with failures.\a"
|
35
|
+
puts
|
36
|
+
red "#{@failed_commands}"
|
37
|
+
else
|
38
|
+
green "Update process completed successfully."
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: update
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2012-01-23 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: slop
|
16
|
-
requirement: &
|
16
|
+
requirement: &70174221582700 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '2.4'
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70174221582700
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: slop
|
27
|
-
requirement: &
|
27
|
+
requirement: &70174221582160 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
version: '2.4'
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70174221582160
|
36
36
|
description: A Ruby Gem for running a list of update commands from command line.
|
37
37
|
email:
|
38
38
|
- shannonskipper@gmail.com
|
@@ -46,7 +46,6 @@ files:
|
|
46
46
|
- README.md
|
47
47
|
- bin/update
|
48
48
|
- lib/update.rb
|
49
|
-
- lib/update/base.rb
|
50
49
|
- lib/update/commands.rb
|
51
50
|
- lib/update/red-green.rb
|
52
51
|
- lib/update/version.rb
|
data/lib/update/base.rb
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
module Update
|
2
|
-
class << self
|
3
|
-
def run
|
4
|
-
run_each_command
|
5
|
-
report_final_status
|
6
|
-
end
|
7
|
-
|
8
|
-
private
|
9
|
-
|
10
|
-
def run_each_command
|
11
|
-
Update::COMMANDS.each do |command, description|
|
12
|
-
green description
|
13
|
-
puts `#{command}`
|
14
|
-
check_for_failures command
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
def check_for_failures command
|
19
|
-
unless $?.success?
|
20
|
-
@failed_commands ||= []
|
21
|
-
@failed_commands << command
|
22
|
-
red "Command failed."
|
23
|
-
end
|
24
|
-
end
|
25
|
-
|
26
|
-
def report_final_status
|
27
|
-
if @failed_commands
|
28
|
-
red "Update process completed with failures.\a"
|
29
|
-
puts
|
30
|
-
red "#{@failed_commands}"
|
31
|
-
else
|
32
|
-
green "Update process completed successfully."
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|