lemans 1.1.0 → 1.2.0

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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Miniswen
4
- VERSION = "1.1.0"
4
+ VERSION = "1.2.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lemans
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Svyatoslav Kryukov
@@ -170,7 +170,9 @@ files:
170
170
  - lib/lemans/cli/templates/bench/environment/Dockerfile
171
171
  - lib/lemans/cli/templates/bench/tasks/example-task/environment.patch
172
172
  - lib/lemans/cli/templates/bench/tasks/example-task/instruction.md
173
- - lib/lemans/cli/templates/bench/tasks/example-task/solution.patch
173
+ - lib/lemans/cli/templates/bench/tasks/example-task/solution.1.patch
174
+ - lib/lemans/cli/templates/bench/tasks/example-task/solution.2.patch
175
+ - lib/lemans/cli/templates/bench/tasks/example-task/verification_test.1.rb
174
176
  - lib/lemans/cli/templates/bench/tasks/example-task/verification_test.rb
175
177
  - lib/lemans/cli/templates/bench/tasks/hello-world/environment.patch
176
178
  - lib/lemans/cli/templates/bench/tasks/hello-world/instruction.md
@@ -196,6 +198,7 @@ files:
196
198
  - lib/lemans/environments/daytona/shell.rb
197
199
  - lib/lemans/environments/daytona/snapshot_store.rb
198
200
  - lib/lemans/environments/docker.rb
201
+ - lib/lemans/ext/deep_merge.rb
199
202
  - lib/lemans/result.rb
200
203
  - lib/lemans/runner.rb
201
204
  - lib/lemans/runner/executor.rb
@@ -1,7 +0,0 @@
1
- diff --git a/fizzbuzz.rb b/fizzbuzz.rb
2
- index 345b032..2c15f7d 100644
3
- --- a/fizzbuzz.rb
4
- +++ b/fizzbuzz.rb
5
- @@ -1 +1 @@
6
- -1.upto(100) { |i| puts i }
7
- +1.upto(100) { |i| s = "#{"Fizz" if i % 3 == 0}#{"Buzz" if i % 5 == 0}"; puts s.empty? ? i : s }