ruby_learner 1.0.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.
Files changed (188) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +5 -0
  5. data/CODE_OF_CONDUCT.md +74 -0
  6. data/Gemfile +6 -0
  7. data/Gemfile.lock +58 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +65 -0
  10. data/Rakefile +6 -0
  11. data/bin/console +14 -0
  12. data/bin/new_terminal +25 -0
  13. data/bin/setup +8 -0
  14. data/docs/happy_ruby/RussOlsen_EloquentRuby_c1.pdf +0 -0
  15. data/docs/happy_ruby/RussOlsen_EloquentRuby_c5.pdf +0 -0
  16. data/docs/happy_ruby/TanoshiiRuby_v3_c23.pdf +0 -0
  17. data/docs/happy_ruby/TanoshiiRuby_v5_c1.pdf +0 -0
  18. data/docs/happy_ruby/TanoshiiRuby_v5_c2-3.pdf +0 -0
  19. data/docs/happy_ruby/c2.ipynb +479 -0
  20. data/docs/happy_ruby/c3_4.ipynb +237 -0
  21. data/docs/seminar/8-1.org +18 -0
  22. data/exe/ruby_learner +5 -0
  23. data/lib/ruby_learner/h.rb +14 -0
  24. data/lib/ruby_learner/methods.rb +131 -0
  25. data/lib/ruby_learner/random_h.rb +16 -0
  26. data/lib/ruby_learner/ruby_learner.rb +43 -0
  27. data/lib/ruby_learner/sequential_h.rb +15 -0
  28. data/lib/ruby_learner/typing_practice.rb +21 -0
  29. data/lib/ruby_learner/version.rb +3 -0
  30. data/questions/random_check/.rspec +1 -0
  31. data/questions/random_check/random_h.rb +16 -0
  32. data/questions/random_check/section_1/.rspec +1 -0
  33. data/questions/random_check/section_1/lib/answer.rb +15 -0
  34. data/questions/random_check/section_1/lib/sentence.org +9 -0
  35. data/questions/random_check/section_1/lib/workplace.rb +5 -0
  36. data/questions/random_check/section_1/spec/spec_helper.rb +100 -0
  37. data/questions/random_check/section_1/spec/workplace_spec.rb +10 -0
  38. data/questions/random_check/section_2/.rspec +1 -0
  39. data/questions/random_check/section_2/lib/answer.rb +17 -0
  40. data/questions/random_check/section_2/lib/sentence.org +12 -0
  41. data/questions/random_check/section_2/lib/workplace.rb +5 -0
  42. data/questions/random_check/section_2/spec/.rspec +1 -0
  43. data/questions/random_check/section_2/spec/spec_helper.rb +100 -0
  44. data/questions/random_check/section_2/spec/workplace_spec.rb +11 -0
  45. data/questions/sequential_check/section_1/part_1/lib/answer.rb +9 -0
  46. data/questions/sequential_check/section_1/part_1/lib/sentence.org +9 -0
  47. data/questions/sequential_check/section_1/part_1/lib/workplace.rb +5 -0
  48. data/questions/sequential_check/section_1/part_1/spec/spec_helper.rb +100 -0
  49. data/questions/sequential_check/section_1/part_1/spec/workplace_spec.rb +10 -0
  50. data/questions/sequential_check/section_1/part_2/lib/answer.rb +16 -0
  51. data/questions/sequential_check/section_1/part_2/lib/sentence.org +12 -0
  52. data/questions/sequential_check/section_1/part_2/lib/workplace.rb +5 -0
  53. data/questions/sequential_check/section_1/part_2/spec/.rspec +1 -0
  54. data/questions/sequential_check/section_1/part_2/spec/spec_helper.rb +100 -0
  55. data/questions/sequential_check/section_1/part_2/spec/workplace_spec.rb +11 -0
  56. data/ruby_learner.gemspec +41 -0
  57. data/takahashi/docs/README.org +139 -0
  58. data/takahashi/docs/drill.html +875 -0
  59. data/takahashi/docs/drill.html~ +877 -0
  60. data/takahashi/docs/drill.org +446 -0
  61. data/takahashi/docs/ruby_for_beginner.html +2642 -0
  62. data/takahashi/docs/ruby_for_beginner.org +1430 -0
  63. data/takahashi/sample_prog/answer/10_1.rb +5 -0
  64. data/takahashi/sample_prog/answer/11_1.rb +5 -0
  65. data/takahashi/sample_prog/answer/11_2.rb +4 -0
  66. data/takahashi/sample_prog/answer/1_1.rb +1 -0
  67. data/takahashi/sample_prog/answer/1_2.rb +1 -0
  68. data/takahashi/sample_prog/answer/1_3.rb +1 -0
  69. data/takahashi/sample_prog/answer/2_1.rb +5 -0
  70. data/takahashi/sample_prog/answer/2_2.rb +12 -0
  71. data/takahashi/sample_prog/answer/3_1.rb +10 -0
  72. data/takahashi/sample_prog/answer/4_1.rb +7 -0
  73. data/takahashi/sample_prog/answer/5_1.rb +6 -0
  74. data/takahashi/sample_prog/answer/5_2.rb +3 -0
  75. data/takahashi/sample_prog/answer/6_1.rb +3 -0
  76. data/takahashi/sample_prog/answer/6_2.rb +5 -0
  77. data/takahashi/sample_prog/answer/6_3.rb +5 -0
  78. data/takahashi/sample_prog/answer/6_4.rb +7 -0
  79. data/takahashi/sample_prog/answer/7_1.rb +3 -0
  80. data/takahashi/sample_prog/answer/7_2.rb +8 -0
  81. data/takahashi/sample_prog/answer/9_1.rb +3 -0
  82. data/takahashi/sample_prog/answer/9_2.rb +5 -0
  83. data/takahashi/sample_prog/answer/9_3.rb +10 -0
  84. data/takahashi/sample_prog/answer/hello.rb +3 -0
  85. data/workshop/.rspec +1 -0
  86. data/workshop/emacs.d/ac-comphist.dat +50 -0
  87. data/workshop/emacs.d/cp5022x.el +156 -0
  88. data/workshop/emacs.d/elpa/archives/gnu/archive-contents +1240 -0
  89. data/workshop/emacs.d/elpa/archives/melpa/archive-contents +2 -0
  90. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-autoloads.el +65 -0
  91. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-config.el +551 -0
  92. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-config.elc +0 -0
  93. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-pkg.el +6 -0
  94. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete.el +2164 -0
  95. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete.elc +0 -0
  96. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ada-mode +72 -0
  97. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/c++-mode +99 -0
  98. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/c-mode +55 -0
  99. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/caml-mode +231 -0
  100. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/clojure-mode +580 -0
  101. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/clojurescript-mode +475 -0
  102. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/coq-mode +278 -0
  103. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/css-mode +874 -0
  104. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/erlang-mode +216 -0
  105. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ess-julia-mode +37 -0
  106. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/go-mode +25 -0
  107. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/haskell-mode +679 -0
  108. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/java-mode +53 -0
  109. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/js-mode +148 -0
  110. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/julia-mode +37 -0
  111. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/lua-mode +21 -0
  112. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/nim-mode +70 -0
  113. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/objc-mode +161 -0
  114. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/octave-mode +46 -0
  115. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/php-mode +6144 -0
  116. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/python-mode +379 -0
  117. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/qml-mode +183 -0
  118. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ruby-mode +181 -0
  119. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/scala-mode +1347 -0
  120. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/scheme-mode +216 -0
  121. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/sclang-mode +1481 -0
  122. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/sh-mode +182 -0
  123. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/swift-mode +87 -0
  124. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/tcl-mode +172 -0
  125. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ts-mode +797 -0
  126. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/tuareg-mode +231 -0
  127. data/workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/verilog-mode +313 -0
  128. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults-autoloads.el +16 -0
  129. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults-pkg.el +2 -0
  130. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults.el +90 -0
  131. data/workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults.elc +0 -0
  132. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode-autoloads.el +26 -0
  133. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode-pkg.el +2 -0
  134. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode.el +877 -0
  135. data/workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode.elc +0 -0
  136. data/workshop/emacs.d/elpa/haml-mode-readme.txt +8 -0
  137. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-light-theme.el +918 -0
  138. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-light-theme.elc +0 -0
  139. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme-autoloads.el +32 -0
  140. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme-pkg.el +8 -0
  141. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme.el +912 -0
  142. data/workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme.elc +0 -0
  143. data/workshop/emacs.d/elpa/ox-bibtex-chinese-readme.txt +21 -0
  144. data/workshop/emacs.d/elpa/popup-20160709.729/popup-autoloads.el +15 -0
  145. data/workshop/emacs.d/elpa/popup-20160709.729/popup-pkg.el +2 -0
  146. data/workshop/emacs.d/elpa/popup-20160709.729/popup.el +1432 -0
  147. data/workshop/emacs.d/elpa/popup-20160709.729/popup.elc +0 -0
  148. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode-autoloads.el +33 -0
  149. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode-pkg.el +2 -0
  150. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode.el +470 -0
  151. data/workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode.elc +0 -0
  152. data/workshop/emacs.d/elpa/yaml-mode-readme.txt +25 -0
  153. data/workshop/emacs.d/haml-mode-master/.gitignore +1 -0
  154. data/workshop/emacs.d/haml-mode-master/.mailmap +2 -0
  155. data/workshop/emacs.d/haml-mode-master/MIT-LICENSE +20 -0
  156. data/workshop/emacs.d/haml-mode-master/README.md +47 -0
  157. data/workshop/emacs.d/haml-mode-master/haml-mode.el +887 -0
  158. data/workshop/emacs.d/iceberg_theme.el +202 -0
  159. data/workshop/emacs.d/init-open-recentf.el +133 -0
  160. data/workshop/emacs.d/init.el +229 -0
  161. data/workshop/emacs.d/inits/line-num.el +264 -0
  162. data/workshop/emacs.d/install-elisp.el +366 -0
  163. data/workshop/emacs.d/markdown-mode/markdown-mode.el +5978 -0
  164. data/workshop/emacs.d/notes +12 -0
  165. data/workshop/emacs.d/processing-mode/processing-mode.el +275 -0
  166. data/workshop/emacs.d/recentf +31 -0
  167. data/workshop/emacs.d/ruby-mode/inf-ruby.el +416 -0
  168. data/workshop/emacs.d/ruby-mode/rdoc-mode.el +130 -0
  169. data/workshop/emacs.d/ruby-mode/ruby-electric.el +205 -0
  170. data/workshop/emacs.d/ruby-mode/ruby-mode.el +1496 -0
  171. data/workshop/emacs.d/ruby-mode/ruby-style.el +78 -0
  172. data/workshop/emacs.d/ruby-mode/rubydb2x.el +104 -0
  173. data/workshop/emacs.d/ruby-mode/rubydb3x.el +115 -0
  174. data/workshop/emacs.d/ruby_learner_init.el +244 -0
  175. data/workshop/emacs.d/themes/dracula-theme.el +431 -0
  176. data/workshop/emacs.d/themes/iceberg-theme.el +205 -0
  177. data/workshop/emacs.d/themes/my-misterioso-theme.el +109 -0
  178. data/workshop/emacs.d/themes/my-wombat-theme.el +121 -0
  179. data/workshop/emacs.d/wiki-mode/wiki.el +976 -0
  180. data/workshop/emacs_help.org +34 -0
  181. data/workshop/lib/answer.rb +1 -0
  182. data/workshop/lib/sentence.org +1 -0
  183. data/workshop/lib/workplace.rb +1 -0
  184. data/workshop/restore/empty.rb +0 -0
  185. data/workshop/spec/spec_helper.rb +100 -0
  186. data/workshop/spec/workplace_spec.rb +1 -0
  187. data/workshop/training_data.txt +3 -0
  188. metadata +343 -0
@@ -0,0 +1,34 @@
1
+ #+STARTUP: indent nolineimages
2
+ * 記号の説明
3
+ - emacsのキーバインド
4
+ 特殊キー操作
5
+ - C-f, controlキーを押しながら 'f'
6
+ - M-f, escキーを押した後一度離して'f'
7
+ - 操作の中断C-g, 操作の取り消し(Undo) C-x u
8
+ * カーソル移動
9
+ - C-f, move Forwrard, 前or右へ
10
+ - C-b, move Backwrard, 後or左へ
11
+ - C-a, go Ahead of line, 行頭へ
12
+ - C-e, go End of line, 行末へ
13
+ - C-n, move Next line, 次行へ
14
+ - C-p, move Previous line, 前行へ
15
+ * 編集
16
+ - C-d, Delete char, 一字削除
17
+ - C-k, Kill line, 一行抹消,カット
18
+ - C-y, Yank, ペースト
19
+ - C-w, Kill region, 領域抹消,カット
20
+ - M-y, copy region, 領域コピー
21
+ - 領域選択は,先頭or最後尾でC-spaceした後,最後尾or先頭へカーソル移動
22
+ - 領域選択後 M-x indent-region, 整地
23
+ * ファイル
24
+ - C-x C-f, Find file, ファイルを開く
25
+ - C-x C-s, Save file, ファイルを保存
26
+ - C-x C-w, Write file NAME, ファイルを別名で書き込む
27
+ * 終了
28
+ - C-x C-c, Quit emacs, ファイルを保存して終了
29
+ - C-z, suspend emacs, 一時停止,fgで復活
30
+ * 画面
31
+ - C-x 2, 2 windows, 二つに分割
32
+ - C-x 1, 1 windows, 一つに戻す
33
+ - C-x 3, 3rd window sep,縦線分割
34
+ - C-x o, Other windows, 次の画面へ移動
@@ -0,0 +1 @@
1
+ # coding: utf-8
@@ -0,0 +1 @@
1
+
@@ -0,0 +1 @@
1
+ # workplace.rb
File without changes
@@ -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 @@
1
+ # workplace_spec.rb
@@ -0,0 +1,3 @@
1
+ 2018-04-22 15:19:46 +0900 0.9
2
+ 2018-04-22 15:20:17 +0900 16.81
3
+ 2018-04-22 15:21:34 +0900 26.34 sec
metadata ADDED
@@ -0,0 +1,343 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby_learner
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Takaki Otsu
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-08-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: thor
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: colorize
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: minitest
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 5.10.3
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 5.10.3
97
+ - !ruby/object:Gem::Dependency
98
+ name: diff-lcs
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rubocop
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 0.55.0
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: 0.55.0
125
+ description: This gem can give you knowledge about Ruby
126
+ email:
127
+ - ''
128
+ executables:
129
+ - ruby_learner
130
+ extensions: []
131
+ extra_rdoc_files: []
132
+ files:
133
+ - ".gitignore"
134
+ - ".rspec"
135
+ - ".travis.yml"
136
+ - CODE_OF_CONDUCT.md
137
+ - Gemfile
138
+ - Gemfile.lock
139
+ - LICENSE.txt
140
+ - README.md
141
+ - Rakefile
142
+ - bin/console
143
+ - bin/new_terminal
144
+ - bin/setup
145
+ - docs/happy_ruby/RussOlsen_EloquentRuby_c1.pdf
146
+ - docs/happy_ruby/RussOlsen_EloquentRuby_c5.pdf
147
+ - docs/happy_ruby/TanoshiiRuby_v3_c23.pdf
148
+ - docs/happy_ruby/TanoshiiRuby_v5_c1.pdf
149
+ - docs/happy_ruby/TanoshiiRuby_v5_c2-3.pdf
150
+ - docs/happy_ruby/c2.ipynb
151
+ - docs/happy_ruby/c3_4.ipynb
152
+ - docs/seminar/8-1.org
153
+ - exe/ruby_learner
154
+ - lib/ruby_learner/h.rb
155
+ - lib/ruby_learner/methods.rb
156
+ - lib/ruby_learner/random_h.rb
157
+ - lib/ruby_learner/ruby_learner.rb
158
+ - lib/ruby_learner/sequential_h.rb
159
+ - lib/ruby_learner/typing_practice.rb
160
+ - lib/ruby_learner/version.rb
161
+ - questions/random_check/.rspec
162
+ - questions/random_check/random_h.rb
163
+ - questions/random_check/section_1/.rspec
164
+ - questions/random_check/section_1/lib/answer.rb
165
+ - questions/random_check/section_1/lib/sentence.org
166
+ - questions/random_check/section_1/lib/workplace.rb
167
+ - questions/random_check/section_1/spec/spec_helper.rb
168
+ - questions/random_check/section_1/spec/workplace_spec.rb
169
+ - questions/random_check/section_2/.rspec
170
+ - questions/random_check/section_2/lib/answer.rb
171
+ - questions/random_check/section_2/lib/sentence.org
172
+ - questions/random_check/section_2/lib/workplace.rb
173
+ - questions/random_check/section_2/spec/.rspec
174
+ - questions/random_check/section_2/spec/spec_helper.rb
175
+ - questions/random_check/section_2/spec/workplace_spec.rb
176
+ - questions/sequential_check/section_1/part_1/lib/answer.rb
177
+ - questions/sequential_check/section_1/part_1/lib/sentence.org
178
+ - questions/sequential_check/section_1/part_1/lib/workplace.rb
179
+ - questions/sequential_check/section_1/part_1/spec/spec_helper.rb
180
+ - questions/sequential_check/section_1/part_1/spec/workplace_spec.rb
181
+ - questions/sequential_check/section_1/part_2/lib/answer.rb
182
+ - questions/sequential_check/section_1/part_2/lib/sentence.org
183
+ - questions/sequential_check/section_1/part_2/lib/workplace.rb
184
+ - questions/sequential_check/section_1/part_2/spec/.rspec
185
+ - questions/sequential_check/section_1/part_2/spec/spec_helper.rb
186
+ - questions/sequential_check/section_1/part_2/spec/workplace_spec.rb
187
+ - ruby_learner.gemspec
188
+ - takahashi/docs/README.org
189
+ - takahashi/docs/drill.html
190
+ - takahashi/docs/drill.html~
191
+ - takahashi/docs/drill.org
192
+ - takahashi/docs/ruby_for_beginner.html
193
+ - takahashi/docs/ruby_for_beginner.org
194
+ - takahashi/sample_prog/answer/10_1.rb
195
+ - takahashi/sample_prog/answer/11_1.rb
196
+ - takahashi/sample_prog/answer/11_2.rb
197
+ - takahashi/sample_prog/answer/1_1.rb
198
+ - takahashi/sample_prog/answer/1_2.rb
199
+ - takahashi/sample_prog/answer/1_3.rb
200
+ - takahashi/sample_prog/answer/2_1.rb
201
+ - takahashi/sample_prog/answer/2_2.rb
202
+ - takahashi/sample_prog/answer/3_1.rb
203
+ - takahashi/sample_prog/answer/4_1.rb
204
+ - takahashi/sample_prog/answer/5_1.rb
205
+ - takahashi/sample_prog/answer/5_2.rb
206
+ - takahashi/sample_prog/answer/6_1.rb
207
+ - takahashi/sample_prog/answer/6_2.rb
208
+ - takahashi/sample_prog/answer/6_3.rb
209
+ - takahashi/sample_prog/answer/6_4.rb
210
+ - takahashi/sample_prog/answer/7_1.rb
211
+ - takahashi/sample_prog/answer/7_2.rb
212
+ - takahashi/sample_prog/answer/9_1.rb
213
+ - takahashi/sample_prog/answer/9_2.rb
214
+ - takahashi/sample_prog/answer/9_3.rb
215
+ - takahashi/sample_prog/answer/hello.rb
216
+ - workshop/.rspec
217
+ - workshop/emacs.d/ac-comphist.dat
218
+ - workshop/emacs.d/cp5022x.el
219
+ - workshop/emacs.d/elpa/archives/gnu/archive-contents
220
+ - workshop/emacs.d/elpa/archives/melpa/archive-contents
221
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-autoloads.el
222
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-config.el
223
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-config.elc
224
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete-pkg.el
225
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete.el
226
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/auto-complete.elc
227
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ada-mode
228
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/c++-mode
229
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/c-mode
230
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/caml-mode
231
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/clojure-mode
232
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/clojurescript-mode
233
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/coq-mode
234
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/css-mode
235
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/erlang-mode
236
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ess-julia-mode
237
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/go-mode
238
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/haskell-mode
239
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/java-mode
240
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/js-mode
241
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/julia-mode
242
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/lua-mode
243
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/nim-mode
244
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/objc-mode
245
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/octave-mode
246
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/php-mode
247
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/python-mode
248
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/qml-mode
249
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ruby-mode
250
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/scala-mode
251
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/scheme-mode
252
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/sclang-mode
253
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/sh-mode
254
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/swift-mode
255
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/tcl-mode
256
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/ts-mode
257
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/tuareg-mode
258
+ - workshop/emacs.d/elpa/auto-complete-20170124.1845/dict/verilog-mode
259
+ - workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults-autoloads.el
260
+ - workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults-pkg.el
261
+ - workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults.el
262
+ - workshop/emacs.d/elpa/better-defaults-20170613.2104/better-defaults.elc
263
+ - workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode-autoloads.el
264
+ - workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode-pkg.el
265
+ - workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode.el
266
+ - workshop/emacs.d/elpa/haml-mode-20170923.2153/haml-mode.elc
267
+ - workshop/emacs.d/elpa/haml-mode-readme.txt
268
+ - workshop/emacs.d/elpa/material-theme-20171123.1040/material-light-theme.el
269
+ - workshop/emacs.d/elpa/material-theme-20171123.1040/material-light-theme.elc
270
+ - workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme-autoloads.el
271
+ - workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme-pkg.el
272
+ - workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme.el
273
+ - workshop/emacs.d/elpa/material-theme-20171123.1040/material-theme.elc
274
+ - workshop/emacs.d/elpa/ox-bibtex-chinese-readme.txt
275
+ - workshop/emacs.d/elpa/popup-20160709.729/popup-autoloads.el
276
+ - workshop/emacs.d/elpa/popup-20160709.729/popup-pkg.el
277
+ - workshop/emacs.d/elpa/popup-20160709.729/popup.el
278
+ - workshop/emacs.d/elpa/popup-20160709.729/popup.elc
279
+ - workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode-autoloads.el
280
+ - workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode-pkg.el
281
+ - workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode.el
282
+ - workshop/emacs.d/elpa/yaml-mode-20180212.1556/yaml-mode.elc
283
+ - workshop/emacs.d/elpa/yaml-mode-readme.txt
284
+ - workshop/emacs.d/haml-mode-master/.gitignore
285
+ - workshop/emacs.d/haml-mode-master/.mailmap
286
+ - workshop/emacs.d/haml-mode-master/MIT-LICENSE
287
+ - workshop/emacs.d/haml-mode-master/README.md
288
+ - workshop/emacs.d/haml-mode-master/haml-mode.el
289
+ - workshop/emacs.d/iceberg_theme.el
290
+ - workshop/emacs.d/init-open-recentf.el
291
+ - workshop/emacs.d/init.el
292
+ - workshop/emacs.d/inits/line-num.el
293
+ - workshop/emacs.d/install-elisp.el
294
+ - workshop/emacs.d/markdown-mode/markdown-mode.el
295
+ - workshop/emacs.d/notes
296
+ - workshop/emacs.d/processing-mode/processing-mode.el
297
+ - workshop/emacs.d/recentf
298
+ - workshop/emacs.d/ruby-mode/inf-ruby.el
299
+ - workshop/emacs.d/ruby-mode/rdoc-mode.el
300
+ - workshop/emacs.d/ruby-mode/ruby-electric.el
301
+ - workshop/emacs.d/ruby-mode/ruby-mode.el
302
+ - workshop/emacs.d/ruby-mode/ruby-style.el
303
+ - workshop/emacs.d/ruby-mode/rubydb2x.el
304
+ - workshop/emacs.d/ruby-mode/rubydb3x.el
305
+ - workshop/emacs.d/ruby_learner_init.el
306
+ - workshop/emacs.d/themes/dracula-theme.el
307
+ - workshop/emacs.d/themes/iceberg-theme.el
308
+ - workshop/emacs.d/themes/my-misterioso-theme.el
309
+ - workshop/emacs.d/themes/my-wombat-theme.el
310
+ - workshop/emacs.d/wiki-mode/wiki.el
311
+ - workshop/emacs_help.org
312
+ - workshop/lib/answer.rb
313
+ - workshop/lib/sentence.org
314
+ - workshop/lib/workplace.rb
315
+ - workshop/restore/empty.rb
316
+ - workshop/spec/spec_helper.rb
317
+ - workshop/spec/workplace_spec.rb
318
+ - workshop/training_data.txt
319
+ homepage: ''
320
+ licenses:
321
+ - MIT
322
+ metadata: {}
323
+ post_install_message:
324
+ rdoc_options: []
325
+ require_paths:
326
+ - lib
327
+ required_ruby_version: !ruby/object:Gem::Requirement
328
+ requirements:
329
+ - - ">="
330
+ - !ruby/object:Gem::Version
331
+ version: '0'
332
+ required_rubygems_version: !ruby/object:Gem::Requirement
333
+ requirements:
334
+ - - ">="
335
+ - !ruby/object:Gem::Version
336
+ version: '0'
337
+ requirements: []
338
+ rubyforge_project:
339
+ rubygems_version: 2.6.11
340
+ signing_key:
341
+ specification_version: 4
342
+ summary: This helps to learn Ruby
343
+ test_files: []