work_together 0.4.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/work_together.rb +2 -2
- data/lib/work_together/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71b53e8b8573dd1d69a3aaa584a97c01e6d9c66b
|
4
|
+
data.tar.gz: 0343262c8259704b8c91f17a7a9707fd67a0ccfb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c03983fb0706c03d71f11abf26a98024ea279e08b7f2ea29d24f4ac15412d13c7882d91ce19a80a6d0b6f8597c26e9e6c337b93b8106ff641f389bec9abc2adc
|
7
|
+
data.tar.gz: f8f3416e7b5e634e3e9a0329f7c5fb75e211db1c9ea2fa63cd718ae1e6b015cafdabd10756bc6bd5456eb4106419b5dca8727d2e71355c00d71a608cbd92c17a
|
data/lib/work_together.rb
CHANGED
@@ -48,9 +48,9 @@ class WorkTogether
|
|
48
48
|
Table.all.each_with_index do |table, i|
|
49
49
|
puts "Group #{i + 1}:".colorize(:blue)
|
50
50
|
table.students.each do |student|
|
51
|
-
puts student.name.colorize(:
|
51
|
+
puts student.name.colorize(:light_blue)
|
52
52
|
end
|
53
|
-
puts "-------------------".colorize(:
|
53
|
+
puts "-------------------".colorize(:blue)
|
54
54
|
end
|
55
55
|
end
|
56
56
|
|