ruby_learner 1.1.14 → 1.1.15

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.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/lib/ruby_learner/sequential_main.rb +19 -5
  4. data/lib/ruby_learner/version.rb +1 -1
  5. data/questions/sequential_check/section_1/part_1/lib/sentence.org +17 -6
  6. data/questions/sequential_check/section_1/part_1/spec/workplace_spec.rb +1 -1
  7. data/questions/sequential_check/section_1/part_2/lib/sentence.org +16 -6
  8. data/questions/sequential_check/section_1/part_3/lib/sentence.org +17 -7
  9. data/questions/sequential_check/section_2/part_1/lib/sentence.org +17 -6
  10. data/questions/sequential_check/section_2/part_2/lib/sentence.org +43 -0
  11. data/questions/sequential_check/section_2/part_3/lib/sentence.org +22 -5
  12. data/questions/sequential_check/section_2/part_3/spec/workplace_spec.rb +2 -2
  13. data/questions/sequential_check/section_3/part_1/lib/sentence.org +56 -0
  14. data/questions/sequential_check/section_3/part_3/lib/answer.rb +5 -0
  15. data/questions/sequential_check/section_3/part_3/lib/sentence.org +6 -0
  16. data/questions/sequential_check/section_3/part_3/lib/workplace.rb +2 -0
  17. data/questions/sequential_check/section_3/part_3/spec/spec_helper.rb +100 -0
  18. data/questions/sequential_check/section_3/part_3/spec/workplace_spec.rb +9 -0
  19. data/questions/sequential_check/section_4/part_1/lib/answer.rb +19 -8
  20. data/questions/sequential_check/section_4/part_1/lib/sentence.org +94 -11
  21. data/questions/sequential_check/section_4/part_1/lib/workplace.rb +17 -0
  22. data/questions/sequential_check/section_4/part_1/spec/workplace_spec.rb +5 -10
  23. data/questions/sequential_check/section_4/part_2/lib/answer.rb +9 -0
  24. data/questions/sequential_check/section_4/part_2/lib/sentence.org +85 -0
  25. data/questions/sequential_check/section_4/part_2/lib/workplace.rb +2 -0
  26. data/questions/sequential_check/section_4/part_2/spec/spec_helper.rb +100 -0
  27. data/questions/sequential_check/section_4/part_2/spec/workplace_spec.rb +14 -0
  28. data/questions/sequential_check/section_4/part_3/lib/answer.rb +13 -0
  29. data/questions/sequential_check/section_4/part_3/lib/sentence.org +88 -0
  30. data/questions/sequential_check/section_4/part_3/lib/workplace.rb +4 -0
  31. data/questions/sequential_check/section_4/part_3/spec/spec_helper.rb +100 -0
  32. data/questions/sequential_check/section_4/part_3/spec/workplace_spec.rb +29 -0
  33. data/questions/sequential_check/section_5/part_1/lib/answer.rb +3 -3
  34. data/questions/sequential_check/section_5/part_1/lib/sentence.org +60 -7
  35. data/questions/sequential_check/section_5/part_1/lib/workplace.rb +1 -0
  36. data/questions/sequential_check/section_5/part_1/spec/workplace_spec.rb +30 -9
  37. data/questions/sequential_check/section_5/part_2/lib/answer.rb +11 -2
  38. data/questions/sequential_check/section_5/part_2/lib/sentence.org +70 -6
  39. data/questions/sequential_check/section_5/part_2/lib/workplace.rb +9 -0
  40. data/questions/sequential_check/section_5/part_2/spec/workplace_spec.rb +18 -5
  41. data/questions/sequential_check/section_5/part_3/lib/answer.rb +17 -0
  42. data/questions/sequential_check/section_5/part_3/lib/sentence.org +74 -0
  43. data/questions/sequential_check/section_5/part_3/lib/workplace.rb +10 -0
  44. data/questions/sequential_check/section_5/part_3/spec/spec_helper.rb +100 -0
  45. data/questions/sequential_check/section_5/part_3/spec/workplace_spec.rb +22 -0
  46. data/questions/sequential_check/section_6/part_1/lib/answer.rb +7 -2
  47. data/questions/sequential_check/section_6/part_1/lib/sentence.org +13 -14
  48. data/questions/sequential_check/section_6/part_1/lib/workplace.rb +2 -0
  49. data/questions/sequential_check/section_6/part_1/spec/workplace_spec.rb +21 -9
  50. data/questions/sequential_check/section_6/part_2/lib/sentence.org +1 -0
  51. data/workshop/rubocop.yml +2 -0
  52. metadata +22 -2
@@ -1 +1,10 @@
1
1
  # section_5/part_2/workplace.rb
2
+ names = %w[tanaka nakamura sasaki suzuki]
3
+ index = 0
4
+
5
+ names.size.times do
6
+ puts names[index]
7
+ index += 1
8
+ end
9
+
10
+ # add your code.
@@ -1,9 +1,22 @@
1
1
  require "open3"
2
2
 
3
- RSpec.describe "times-loop" do
4
- it '5times, return "All work and no play makes Jack a dull boy.\n" x 5 ' do
5
- workshop = "#{ENV['HOME']}/.ruby_learner/workshop"
6
- stdout, stderr, status = Open3.capture3("ruby #{workshop}/lib/workplace.rb")
7
- expect { puts stdout }.to output("All work and no play makes Jack a dull boy.\nAll work and no play makes Jack a dull boy.\nAll work and no play makes Jack a dull boy.\nAll work and no play makes Jack a dull boy.\nAll work and no play makes Jack a dull boy.\n").to_stdout
3
+ is_each_method = false
4
+ workshop = "#{ENV['HOME']}/.ruby_learner/workshop"
5
+ filename = "#{workshop}/lib/workplace.rb"
6
+
7
+ RSpec.describe "each-check" do
8
+ it 'check each-method, return boolean' do
9
+ File.open(filename, "r") do |file|
10
+ file.each_line do |line|
11
+ is_each_method = true if line.include?('each')
12
+ end
13
+ end
14
+ puts "ErrorMessage: you don't use each-methods." if !is_each_method
15
+ expect( is_each_method ).to eq(true)
16
+ end
17
+
18
+ it 'return names-items' do
19
+ stdout, stderr, status = Open3.capture3("ruby #{filename}")
20
+ expect { puts stdout }.to output("tanaka\nnakamura\nsasaki\nsuzuki\ntanaka\nnakamura\nsasaki\nsuzuki\n").to_stdout
8
21
  end
9
22
  end
@@ -0,0 +1,17 @@
1
+ # section_5/part_2/answer.rb
2
+ # 5-3-loop.rb
3
+ names = %w[tanaka nakamura sasaki suzuki]
4
+ index = 0
5
+
6
+ names.size.times do
7
+ puts names[index]
8
+ index += 1
9
+ end
10
+ # add your code.
11
+ index = 0
12
+
13
+ loop do
14
+ puts names[index]
15
+ index += 1
16
+ break if index >= names.size
17
+ end
@@ -0,0 +1,74 @@
1
+ -課題-
2
+ timesを用いて配列の要素を呼び出すプログラムが用意される.
3
+ その下に,新しく同じ処理を行うプログラムを追加せよ.
4
+ ただし,今度はloopを用いること.
5
+
6
+ ヒント: namesの%w[]表記に関してはテキスト参照せよ.
7
+
8
+ * %w[]表記
9
+ - 配列の要素が全て文字列の場合,文字列ごとのシングルクオーテーション(')が必要ないこの表記を用いる.
10
+ ex) names1 = ['tanaka', 'nakamura', 'sasaki']
11
+ namse2 = %w[tanaka nakamura sasaki]
12
+ namse1とnames2は同様の配列である.
13
+
14
+ * 繰り返し処理
15
+ - 同じこと,または同じようなことを何度か繰り返したい場合に使うメソッドの紹介.
16
+ - 以下のメソッドのeach以外の「do」は省略可能.
17
+ ** while
18
+ - 使用方法...while 条件 do
19
+ 繰り返したい処理
20
+ end
21
+ - 機能...条件が「true」である間,繰り返したい処理を何度も実行する.
22
+
23
+ ** until
24
+ - 使用方法...until 条件 do
25
+ 繰り返したい処理
26
+      end
27
+ - 機能...条件が「false」である間,繰り返したい処理を何度も実行する.
28
+ ** times
29
+ - 使用方法...繰り返す回数.times do
30
+ 繰り返したい処理
31
+ end
32
+ - 機能...繰り返す回数だけ,繰り返したい処理を行う.
33
+
34
+ ** for
35
+ - 使用方法...for 変数 in オブジェクト do
36
+ 繰り返したい処理
37
+ end
38
+ - 機能...指定したオブジェクトの内容によって,変数に値が入り,オブジェクトの終わりまで繰り返しを行う.
39
+ - 使用できるオブジェクトの一例を以下に記す.
40
+
41
+ *** 範囲オブジェクト
42
+ - 範囲オブジェクトは指定した最初の値と最後の値の範囲を表すオブジェクトである.
43
+ - 「..」演算子...「..」の左辺に最初の値を指定し右辺に最後の値を指定することでその範囲を表す.
44
+ ex) 「2..7」の場合は2から7の範囲を表す.
45
+
46
+ - 「...」演算子...「...」は「..」と同じ使い方ができる.ただし,範囲の最後は右辺の値は含めない.
47
+ ex) 「2..7」の場合は2から6の範囲を表す.
48
+ *** 配列
49
+ - 配列をforのオブジェクトにしてすると,配列の要素の数だけ繰り返しを行う.また,forの変数には繰り返しの回数と連動して配列の要素が順に代入される.
50
+ ex) for item in ['Hello', 'Ruby.']
51
+ puts item
52
+ end
53
+
54
+   出力結果
55
+ >Hello
56
+ >Ruby.
57
+   
58
+ ** each
59
+ - 使用方法...オブジェクト.each do |変数|
60
+       繰り返したい処理
61
+ end
62
+ - 機能...指定したオブジェクトの内容によって,変数に値が入り,オブジェクトの終わりまで繰り返しを行う.
63
+ - forで使用できるオブジェクトはeachでも使用可能.
64
+
65
+ ** loop
66
+ - 使用方法...loop do
67
+ 繰り返したい処理
68
+ end
69
+ - 機能...特別な制御を用いて繰り返しを行う.
70
+ *** 特別な制御
71
+ - break...繰り返しを中断し,繰り返しの中から抜ける.
72
+ - next...次の回の繰り返しに処理を移す.
73
+ - redo...同じ条件で繰り返しをやり直す.(ほとんど使われていない.)
74
+
@@ -0,0 +1,10 @@
1
+ # section_5/part_3/workplace.rb
2
+ names = %w[tanaka nakamura sasaki suzuki]
3
+ index = 0
4
+
5
+ names.size.times do
6
+ puts names[index]
7
+ index += 1
8
+ end
9
+
10
+ # add your code.
@@ -0,0 +1,100 @@
1
+ # This file was generated by the `rspec --init` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
4
+ # this file to always be loaded, without a need to explicitly require it in any
5
+ # files.
6
+ #
7
+ # Given that it is always loaded, you are encouraged to keep this file as
8
+ # light-weight as possible. Requiring heavyweight dependencies from this file
9
+ # will add to the boot time of your test suite on EVERY test run, even for an
10
+ # individual file that may not need all of that loaded. Instead, consider making
11
+ # a separate helper file that requires the additional dependencies and performs
12
+ # the additional setup, and require it from the spec files that actually need
13
+ # it.
14
+ #
15
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
16
+ RSpec.configure do |config|
17
+ # rspec-expectations config goes here. You can use an alternate
18
+ # assertion/expectation library such as wrong or the stdlib/minitest
19
+ # assertions if you prefer.
20
+ config.expect_with :rspec do |expectations|
21
+ # This option will default to `true` in RSpec 4. It makes the `description`
22
+ # and `failure_message` of custom matchers include text for helper methods
23
+ # defined using `chain`, e.g.:
24
+ # be_bigger_than(2).and_smaller_than(4).description
25
+ # # => "be bigger than 2 and smaller than 4"
26
+ # ...rather than:
27
+ # # => "be bigger than 2"
28
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
29
+ end
30
+
31
+ # rspec-mocks config goes here. You can use an alternate test double
32
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
33
+ config.mock_with :rspec do |mocks|
34
+ # Prevents you from mocking or stubbing a method that does not exist on
35
+ # a real object. This is generally recommended, and will default to
36
+ # `true` in RSpec 4.
37
+ mocks.verify_partial_doubles = true
38
+ end
39
+
40
+ # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
41
+ # have no way to turn it off -- the option exists only for backwards
42
+ # compatibility in RSpec 3). It causes shared context metadata to be
43
+ # inherited by the metadata hash of host groups and examples, rather than
44
+ # triggering implicit auto-inclusion in groups with matching metadata.
45
+ config.shared_context_metadata_behavior = :apply_to_host_groups
46
+
47
+ # The settings below are suggested to provide a good initial experience
48
+ # with RSpec, but feel free to customize to your heart's content.
49
+ =begin
50
+ # This allows you to limit a spec run to individual examples or groups
51
+ # you care about by tagging them with `:focus` metadata. When nothing
52
+ # is tagged with `:focus`, all examples get run. RSpec also provides
53
+ # aliases for `it`, `describe`, and `context` that include `:focus`
54
+ # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
55
+ config.filter_run_when_matching :focus
56
+
57
+ # Allows RSpec to persist some state between runs in order to support
58
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
59
+ # you configure your source control system to ignore this file.
60
+ config.example_status_persistence_file_path = "spec/examples.txt"
61
+
62
+ # Limits the available syntax to the non-monkey patched syntax that is
63
+ # recommended. For more details, see:
64
+ # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
65
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
66
+ # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
67
+ config.disable_monkey_patching!
68
+
69
+ # This setting enables warnings. It's recommended, but in some cases may
70
+ # be too noisy due to issues in dependencies.
71
+ config.warnings = true
72
+
73
+ # Many RSpec users commonly either run the entire suite or an individual
74
+ # file, and it's useful to allow more verbose output when running an
75
+ # individual spec file.
76
+ if config.files_to_run.one?
77
+ # Use the documentation formatter for detailed output,
78
+ # unless a formatter has already been configured
79
+ # (e.g. via a command-line flag).
80
+ config.default_formatter = "doc"
81
+ end
82
+
83
+ # Print the 10 slowest examples and example groups at the
84
+ # end of the spec run, to help surface which specs are running
85
+ # particularly slow.
86
+ config.profile_examples = 10
87
+
88
+ # Run specs in random order to surface order dependencies. If you find an
89
+ # order dependency and want to debug it, you can fix the order by providing
90
+ # the seed, which is printed after each run.
91
+ # --seed 1234
92
+ config.order = :random
93
+
94
+ # Seed global randomization in this process using the `--seed` CLI option.
95
+ # Setting this allows you to use `--seed` to deterministically reproduce
96
+ # test failures related to randomization by passing the same `--seed` value
97
+ # as the one that triggered the failure.
98
+ Kernel.srand config.seed
99
+ =end
100
+ end
@@ -0,0 +1,22 @@
1
+ require "open3"
2
+
3
+ is_loop_method = false
4
+ workshop = "#{ENV['HOME']}/.ruby_learner/workshop"
5
+ filename = "#{workshop}/lib/workplace.rb"
6
+
7
+ RSpec.describe "loop-check" do
8
+ it 'check loop-method, return boolean' do
9
+ File.open(filename, "r") do |file|
10
+ file.each_line do |line|
11
+ is_loop_method = true if line.include?('loop')
12
+ end
13
+ end
14
+ puts "ErrorMessage: you don't use loop-methods." if !is_loop_method
15
+ expect( is_loop_method ).to eq(true)
16
+ end
17
+
18
+ it 'return names-items' do
19
+ stdout, stderr, status = Open3.capture3("ruby #{filename}")
20
+ expect { puts stdout }.to output("tanaka\nnakamura\nsasaki\nsuzuki\ntanaka\nnakamura\nsasaki\nsuzuki\n").to_stdout
21
+ end
22
+ end
@@ -1,5 +1,10 @@
1
1
  # section_6/part_1/answer.rb
2
2
  # 6-1-array.rb
3
- nums = [3, 1, 4, 1, 5]
3
+ nums = [1, 5, 3, 7, 5]
4
4
 
5
- print nums[ARGV[0].to_i]
5
+ p nums
6
+
7
+ nums[1] = 2
8
+ nums[3] = 4
9
+
10
+ p nums
@@ -1,14 +1,13 @@
1
- 1つの数値をnとして受け取り、配列のn番目の要素を取り出し、表示するプログラムを作成せよ。ただし、配列はプログラム内で定義し、配列には数値が入るものとする。
2
-
3
-
4
- - 配列(Array)
5
-
6
- 配列名 = [オブジェクト, オブジェクト, ...]
7
-
8
- 配列はいくつかのオブジェクトを順序付きで格納したオブジェクト。
9
- 配列の要素を取り出すには、位置を表す番号であるインデックスを用いて
10
-
11
- 配列名[インデックス]
12
-
13
- という構文を用いる。
14
- 配列の先頭の要素のインデックスは「0」であることに注意。
1
+ -課題-
2
+ 与えられた配列(nums)を[1, 2, 3, 4, 5]に変更せよ.
3
+ 変更前の配列と変更後の配列の2つをpを用いて出力せよ.
4
+ 要素変更にはnums[index](indexは回答者の任意の番号)を用いること.
5
+
6
+ * 配列
7
+ - 配列とは,いくつかのオブジェクトを順序つきで格納したオブジェクトです.格納されたオブジェクトは要素と呼びます.
8
+ ** 使用方法
9
+ - 配列作成...配列名 = [オブジェクト,オブジェクト,オブジェクト].オブジェクトは複数格納できるが何も格納しなくても良い.
10
+ - 要素呼び出し...配列名[index] (このindexとは配列の要素番号である.)
11
+ - 要素番号...配列の要素は0から数える.
12
+ - 要素変更...配列名[index] = オブジェクト
13
+ - 配列の大きさ(要素数)...配列名.size
@@ -1 +1,3 @@
1
1
  # section_6/part_1/workplace.rb
2
+ nums = [1, 5, 3, 7, 5]
3
+ #add your code
@@ -1,14 +1,26 @@
1
1
  require "open3"
2
2
 
3
- RSpec.describe "ARGV-check" do
4
- it 'given 2, return 4' do
5
- workshop = "#{ENV['HOME']}/.ruby_learner/workshop"
6
- stdout, stderr, status = Open3.capture3("ruby #{workshop}/lib/workplace.rb 2")
7
- expect { puts stdout }.to output("4\n").to_stdout
3
+ is_array1_method = false
4
+ is_array3_method = false
5
+ workshop = "#{ENV['HOME']}/.ruby_learner/workshop"
6
+ filename = "#{workshop}/lib/workplace.rb"
7
+ RSpec.describe "Array-check" do
8
+ it 'check loop-method, return boolean' do
9
+ File.open(filename, "r") do |file|
10
+ file.each_line do |line|
11
+ is_array1_method = true if line.include?('nums[1]')
12
+ is_array3_method = true if line.include?('nums[3]')
13
+ end
14
+ end
15
+ puts "ErrorMessage: you don't use nums[1]-method." if !is_array1_method
16
+ puts "ErrorMessage: you don't use nums[3]-method." if !is_array3_method
17
+ expect( is_array1_method ).to eq(true)
18
+ expect( is_array3_method ).to eq(true)
8
19
  end
9
- it 'given 4, return 5' do
10
- workshop = "#{ENV['HOME']}/.ruby_learner/workshop"
11
- stdout, stderr, status = Open3.capture3("ruby #{workshop}/lib/workplace.rb 4")
12
- expect { puts stdout }.to output("5\n").to_stdout
20
+
21
+ it 'return [1, 5, 3, 7, 5]\n[1, 2, 3, 4, 5]\n' do
22
+
23
+ stdout, stderr, status = Open3.capture3("ruby #{filename}")
24
+ expect { puts stdout }.to output("[1, 5, 3, 7, 5]\n[1, 2, 3, 4, 5]\n").to_stdout
13
25
  end
14
26
  end
@@ -1,3 +1,4 @@
1
+ -課題-
1
2
  配列の先頭の要素をコマンドラインに入力した要素に変更するプログラムを作成せよ。
2
3
  ただし、配列はプログラム内で定義し、配列には数値が入るものとする。
3
4
 
data/workshop/rubocop.yml CHANGED
@@ -1,2 +1,4 @@
1
1
  Style/FrozenStringLiteralComment:
2
2
  Enabled: false
3
+ Layout/EmptyLines:
4
+ Enabled: false
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_learner
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.14
4
+ version: 1.1.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takaki Otsu
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-10-03 00:00:00.000000000 Z
11
+ date: 2018-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -204,11 +204,26 @@ files:
204
204
  - questions/sequential_check/section_3/part_2/lib/workplace.rb
205
205
  - questions/sequential_check/section_3/part_2/spec/spec_helper.rb
206
206
  - questions/sequential_check/section_3/part_2/spec/workplace_spec.rb
207
+ - questions/sequential_check/section_3/part_3/lib/answer.rb
208
+ - questions/sequential_check/section_3/part_3/lib/sentence.org
209
+ - questions/sequential_check/section_3/part_3/lib/workplace.rb
210
+ - questions/sequential_check/section_3/part_3/spec/spec_helper.rb
211
+ - questions/sequential_check/section_3/part_3/spec/workplace_spec.rb
207
212
  - questions/sequential_check/section_4/part_1/lib/answer.rb
208
213
  - questions/sequential_check/section_4/part_1/lib/sentence.org
209
214
  - questions/sequential_check/section_4/part_1/lib/workplace.rb
210
215
  - questions/sequential_check/section_4/part_1/spec/spec_helper.rb
211
216
  - questions/sequential_check/section_4/part_1/spec/workplace_spec.rb
217
+ - questions/sequential_check/section_4/part_2/lib/answer.rb
218
+ - questions/sequential_check/section_4/part_2/lib/sentence.org
219
+ - questions/sequential_check/section_4/part_2/lib/workplace.rb
220
+ - questions/sequential_check/section_4/part_2/spec/spec_helper.rb
221
+ - questions/sequential_check/section_4/part_2/spec/workplace_spec.rb
222
+ - questions/sequential_check/section_4/part_3/lib/answer.rb
223
+ - questions/sequential_check/section_4/part_3/lib/sentence.org
224
+ - questions/sequential_check/section_4/part_3/lib/workplace.rb
225
+ - questions/sequential_check/section_4/part_3/spec/spec_helper.rb
226
+ - questions/sequential_check/section_4/part_3/spec/workplace_spec.rb
212
227
  - questions/sequential_check/section_5/part_1/lib/answer.rb
213
228
  - questions/sequential_check/section_5/part_1/lib/sentence.org
214
229
  - questions/sequential_check/section_5/part_1/lib/workplace.rb
@@ -219,6 +234,11 @@ files:
219
234
  - questions/sequential_check/section_5/part_2/lib/workplace.rb
220
235
  - questions/sequential_check/section_5/part_2/spec/spec_helper.rb
221
236
  - questions/sequential_check/section_5/part_2/spec/workplace_spec.rb
237
+ - questions/sequential_check/section_5/part_3/lib/answer.rb
238
+ - questions/sequential_check/section_5/part_3/lib/sentence.org
239
+ - questions/sequential_check/section_5/part_3/lib/workplace.rb
240
+ - questions/sequential_check/section_5/part_3/spec/spec_helper.rb
241
+ - questions/sequential_check/section_5/part_3/spec/workplace_spec.rb
222
242
  - questions/sequential_check/section_6/part_1/lib/answer.rb
223
243
  - questions/sequential_check/section_6/part_1/lib/sentence.org
224
244
  - questions/sequential_check/section_6/part_1/lib/workplace.rb