Решение на Десета задача от Георги Киряков

Обратно към всички решения

Към профила на Георги Киряков

Резултати

  • 0 точки от тестове
  • 0 бонус точки
  • 0 точки общо
  • 0 успешни тест(а)
  • 1 неуспешни тест(а)

Код

REPOSITORY = 'http://github.com/gk95/ruby-retrospective-2015-2'
# Двадесет неща, които научих.
#
# 01. Смислена причина за употреба на module
# 02. Fix в ObjectStore.remove метода, при успех трябва да върне и съдържанието на обекта
# 03. x.to_f / е по-ясно от fdiv
# 04. Fix на не правилно използване на reduce
# 05. 'map' + 'join' вместо x = "" ... each { x += }
# 07. Използване на полиморфизъм
# 08.
##

Лог от изпълнението

From https://github.com/fmi/ruby-retrospective-2015-2
 * branch            master     -> FETCH_HEAD
HEAD is now at 512294b Modify a test in task 8 to not include empty cells
Cloning into 'submission'...
HEAD is now at c640389 code improvement
From /tmp/ruby-retrospective-2015-2/checker
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> upstream/master

Changes URL:
http://github.com/gk95/ruby-retrospective-2015-2/compare/512294b6dde...c6403895b25

‘solutions/08.rb’ -> ‘/tmp/ruby-retrospective-2015-2/checker/solutions/08.rb’
‘solutions/05.rb’ -> ‘/tmp/ruby-retrospective-2015-2/checker/solutions/05.rb’
‘solutions/07.rb’ -> ‘/tmp/ruby-retrospective-2015-2/checker/solutions/07.rb’
‘solutions/06.rb’ -> ‘/tmp/ruby-retrospective-2015-2/checker/solutions/06.rb’
OK
..............................

Finished in 0.02773 seconds
30 examples, 0 failures
OK
..............

Finished in 0.00985 seconds
14 examples, 0 failures
Number of lines per method (6)
* LazyMode::File#weekly_agenda is 7 lines long

Errors found
F

Failures:

  1) ruby-retrospective-2015-2 covers the minimum requirements
     Failure/Error: system(command) or raise "Command failed for #{@solutions_repo}: #{command}"
     RuntimeError:
       Command failed for http://github.com/gk95/ruby-retrospective-2015-2: bundle exec rake check
     # /tmp/d20160131-21007-1ju6cij/spec.rb:107:in `execute'
     # /tmp/d20160131-21007-1ju6cij/spec.rb:82:in `block (3 levels) in solutions_pass_all_checks'
     # /tmp/d20160131-21007-1ju6cij/spec.rb:81:in `chdir'
     # /tmp/d20160131-21007-1ju6cij/spec.rb:81:in `block (2 levels) in solutions_pass_all_checks'
     # /tmp/d20160131-21007-1ju6cij/spec.rb:47:in `chdir'
     # /tmp/d20160131-21007-1ju6cij/spec.rb:47:in `block in solutions_pass_all_checks'
     # /tmp/d20160131-21007-1ju6cij/spec.rb:46:in `solutions_pass_all_checks'
     # /tmp/d20160131-21007-1ju6cij/spec.rb:20:in `ok?'
     # /tmp/d20160131-21007-1ju6cij/spec.rb:126:in `<top (required)>'

Finished in 0.0009 seconds
1 example, 1 failure

Failed examples:

rspec /tmp/d20160131-21007-1ju6cij/spec.rb:132 # ruby-retrospective-2015-2 covers the minimum requirements

История (2 версии и 0 коментара)

Георги обнови решението на 27.01.2016 21:11 (преди почти 9 години)

+REPOSITORY = 'http://github.com/gk95/ruby-retrospective-2015-2'
+
+# Двадесет неща, които научих.
+#
+# 01. Смислена причина за употреба на module
+# 02. Fix в ObjectStore.remove метода, при успех трябва да върне и съдържанието на обекта
+# 03. x.to_f / е по-ясно от fdiv
+# 04. Fix на не правилно използване на reduce
+# 05. 'map' + 'join' всместо x = "" ... each { x += }
+# 07. Използване на полиморфизъм
+# 08.
+##

Георги обнови решението на 27.01.2016 21:55 (преди почти 9 години)

+
REPOSITORY = 'http://github.com/gk95/ruby-retrospective-2015-2'
# Двадесет неща, които научих.
#
# 01. Смислена причина за употреба на module
# 02. Fix в ObjectStore.remove метода, при успех трябва да върне и съдържанието на обекта
# 03. x.to_f / е по-ясно от fdiv
# 04. Fix на не правилно използване на reduce
-# 05. 'map' + 'join' всместо x = "" ... each { x += }
+# 05. 'map' + 'join' вместо x = "" ... each { x += }
# 07. Използване на полиморфизъм
# 08.
-##
+##