ruby_learner 1.2.7 → 1.2.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/contents/data/chdir_workshop.sh +3 -0
  4. data/contents/{datas → data}/emacs.d/black/answer.el +6 -6
  5. data/contents/{datas → data}/emacs.d/black/init.el +6 -6
  6. data/contents/{datas → data}/emacs.d/inits/line-num.el +0 -0
  7. data/contents/{datas → data}/emacs.d/markdown-mode/markdown-mode.el +0 -0
  8. data/contents/{datas → data}/emacs.d/ruby-mode/inf-ruby.el +0 -0
  9. data/contents/{datas → data}/emacs.d/ruby-mode/rdoc-mode.el +0 -0
  10. data/contents/{datas → data}/emacs.d/ruby-mode/ruby-electric.el +0 -0
  11. data/contents/{datas → data}/emacs.d/ruby-mode/ruby-mode.el +0 -0
  12. data/contents/{datas → data}/emacs.d/ruby-mode/ruby-style.el +0 -0
  13. data/contents/{datas → data}/emacs.d/ruby-mode/rubydb2x.el +0 -0
  14. data/contents/{datas → data}/emacs.d/ruby-mode/rubydb3x.el +0 -0
  15. data/contents/{datas → data}/emacs.d/themes/dracula-theme.el +0 -0
  16. data/contents/{datas → data}/emacs.d/themes/iceberg-theme.el +0 -0
  17. data/contents/{datas → data}/emacs.d/themes/my-misterioso-theme.el +0 -0
  18. data/contents/{datas → data}/emacs.d/themes/my-whiteboard-theme.el +0 -0
  19. data/contents/{datas → data}/emacs.d/themes/my-wombat-theme.el +0 -0
  20. data/contents/{datas → data}/emacs.d/white/answer.el +6 -6
  21. data/contents/{datas → data}/emacs.d/white/init.el +6 -6
  22. data/contents/{datas → data}/emacs_help.org +0 -0
  23. data/contents/{datas → data}/emacs_help.pdf +0 -0
  24. data/contents/{datas → data}/final_history_sequential.txt +0 -0
  25. data/contents/{datas → data}/install_emacs.sh +0 -0
  26. data/contents/{datas → data}/sequential_mode.txt +0 -0
  27. data/contents/{datas → data}/theme_color.txt +0 -0
  28. data/lib/ruby_learner/common.rb +3 -3
  29. data/lib/ruby_learner/rubocop_rspec_check.rb +3 -3
  30. data/lib/ruby_learner/ruby_learner.rb +17 -10
  31. data/lib/ruby_learner/sequential_check.rb +6 -6
  32. data/lib/ruby_learner/{sequential_check_real.rb → sequential_check_manual.rb} +19 -8
  33. data/lib/ruby_learner/version.rb +1 -1
  34. metadata +28 -27
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1c3893762a7773358735ead1eb6ea4739ee4f93e
4
- data.tar.gz: d9feb7da78e6dc3c069ea52bcbc47a770cd30f2e
3
+ metadata.gz: 831412cfa90441e145673a5a5907343523b75ef4
4
+ data.tar.gz: 0f3a7087213102da48a7b6d37f5f83991678cb2a
5
5
  SHA512:
6
- metadata.gz: 00ef94ebb1db3aea4ec3c418d0db58f7b9d5c5d9ee2a73a0f3849975d05f9b63123b2c2b3f8244e4a651d3593b5767bf330b12a3173918f18b62436c4d57551d
7
- data.tar.gz: 4feb37766729553b8df1db578a04b77f4583858127cc3a6a051caf7dc94eee07dedc11603fe7fea36f4680e8b4cfaa29dd6c8357a3a6d40b261dd31ea2d3af37
6
+ metadata.gz: d51d0d7443729ff1727a99a37c730e8e4f75f70ff1051060ab9b11b527f823644fce3bafda8d70555dd35a0c3e31bf94e46891d83edbbd086882ee09768ee390
7
+ data.tar.gz: 4a698dccc635d9e898f75ca0ea88cebd928a1b6cc77c29c47c88134b3a6a186d1df9a19125fd7b8c7b5facb550d1b77b0e96abe861b50759592d829fb3b91e6f
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby_learner (1.2.6)
4
+ ruby_learner (1.2.7)
5
5
  rspec (~> 3.8)
6
6
  rubocop (~> 0.55.0)
7
7
  thor (~> 0.20.0)
@@ -0,0 +1,3 @@
1
+ #!/bin/sh
2
+
3
+ cd ~/.ruby_learner/workshop
@@ -6,10 +6,10 @@
6
6
  (package-initialize)
7
7
 
8
8
  ;; elファイルの置き場所を設定
9
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/inits" load-path))
10
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/ruby-mode" load-path))
11
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/org-mode" load-path))
12
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/themes" load-path))
9
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/inits" load-path))
10
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/ruby-mode" load-path))
11
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/org-mode" load-path))
12
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/themes" load-path))
13
13
 
14
14
  ;; 画面分割
15
15
  (setq w (selected-window))
@@ -23,8 +23,8 @@
23
23
  (ruby-mode)
24
24
  (find-file "~/.ruby_learner/workshop/lib/answer.rb")
25
25
  ;;setting_theme
26
- (add-to-list 'custom-theme-load-path "~/.ruby_learner/.datas/.emacs.d/themes")
27
- (setq custom-theme-directory "~/.ruby_learner/.datas/.emacs.d/themes")
26
+ (add-to-list 'custom-theme-load-path "~/.ruby_learner/.data/.emacs.d/themes")
27
+ (setq custom-theme-directory "~/.ruby_learner/.data/.emacs.d/themes")
28
28
  (load-theme 'my-wombat t)
29
29
 
30
30
  ;; 起動時にスタートアップ画面を表示しない
@@ -6,13 +6,13 @@
6
6
  (package-initialize)
7
7
 
8
8
  ;; elファイルの置き場所を設定
9
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/inits" load-path))
10
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/ruby-mode" load-path))
11
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/org-mode" load-path))
12
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/themes" load-path))
9
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/inits" load-path))
10
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/ruby-mode" load-path))
11
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/org-mode" load-path))
12
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/themes" load-path))
13
13
  ;;setting_theme
14
- (add-to-list 'custom-theme-load-path "~/.ruby_learner/.datas/.emacs.d/themes")
15
- (setq custom-theme-directory "~/.ruby_learner/.datas/.emacs.d/themes")
14
+ (add-to-list 'custom-theme-load-path "~/.ruby_learner/.data/.emacs.d/themes")
15
+ (setq custom-theme-directory "~/.ruby_learner/.data/.emacs.d/themes")
16
16
  (load-theme 'my-wombat t)
17
17
 
18
18
  ;; 起動時にスタートアップ画面を表示しない
@@ -6,10 +6,10 @@
6
6
  (package-initialize)
7
7
 
8
8
  ;; elファイルの置き場所を設定
9
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/inits" load-path))
10
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/ruby-mode" load-path))
11
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/org-mode" load-path))
12
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/themes" load-path))
9
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/inits" load-path))
10
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/ruby-mode" load-path))
11
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/org-mode" load-path))
12
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/themes" load-path))
13
13
 
14
14
  ;; 画面分割
15
15
  (setq w (selected-window))
@@ -23,8 +23,8 @@
23
23
  (ruby-mode)
24
24
  (find-file "~/.ruby_learner/workshop/lib/answer.rb")
25
25
  ;;setting_theme
26
- (add-to-list 'custom-theme-load-path "~/.ruby_learner/.datas/.emacs.d/themes")
27
- (setq custom-theme-directory "~/.ruby_learner/.datas/.emacs.d/themes")
26
+ (add-to-list 'custom-theme-load-path "~/.ruby_learner/.data/.emacs.d/themes")
27
+ (setq custom-theme-directory "~/.ruby_learner/.data/.emacs.d/themes")
28
28
  (load-theme 'my-whiteboard t)
29
29
 
30
30
  ;; 起動時にスタートアップ画面を表示しない
@@ -6,13 +6,13 @@
6
6
  (package-initialize)
7
7
 
8
8
  ;; elファイルの置き場所を設定
9
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/inits" load-path))
10
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/ruby-mode" load-path))
11
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/org-mode" load-path))
12
- (setq load-path (cons "~/.ruby_learner/.datas/.emacs.d/themes" load-path))
9
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/inits" load-path))
10
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/ruby-mode" load-path))
11
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/org-mode" load-path))
12
+ (setq load-path (cons "~/.ruby_learner/.data/.emacs.d/themes" load-path))
13
13
  ;;setting_theme
14
- (add-to-list 'custom-theme-load-path "~/.ruby_learner/.datas/.emacs.d/themes")
15
- (setq custom-theme-directory "~/.ruby_learner/.datas/.emacs.d/themes")
14
+ (add-to-list 'custom-theme-load-path "~/.ruby_learner/.data/.emacs.d/themes")
15
+ (setq custom-theme-directory "~/.ruby_learner/.data/.emacs.d/themes")
16
16
  (load-theme 'my-whiteboard t)
17
17
 
18
18
  ;; 起動時にスタートアップ画面を表示しない
File without changes
File without changes
File without changes
@@ -15,9 +15,9 @@ class Common
15
15
  system("cp -R #{gem_contents_dir}/workshop/* #{local_dir}/workshop")
16
16
  FileUtils.mkdir_p("#{local_dir}/restore")
17
17
  system("cp -R #{gem_contents_dir}/restore/* #{local_dir}/restore")
18
- FileUtils.mkdir_p("#{local_dir}/.datas")
19
- system("cp -R #{gem_contents_dir}/datas/* #{local_dir}/.datas")
20
- system("cd #{local_dir}/.datas && mv emacs.d .emacs.d")
18
+ FileUtils.mkdir_p("#{local_dir}/.data")
19
+ system("cp -R #{gem_contents_dir}/data/* #{local_dir}/.data")
20
+ system("cd #{local_dir}/.data && mv emacs.d .emacs.d")
21
21
  system("cd #{local_dir}/workshop && mv rspec .rspec")
22
22
  system("cd #{local_dir}/workshop && mv rubocop.yml .rubocop.yml")
23
23
  system("cd #{local_dir}/restore && mv empty.rb .empty.rb")
@@ -9,13 +9,13 @@ class RubocopRspecCheck
9
9
  @local_dir = local_dir
10
10
  @workshop_dir = "#{local_dir}/workshop"
11
11
  @restore_dir = "#{local_dir}/restore"
12
- @datas_dir = "#{local_dir}/.datas"
12
+ @data_dir = "#{local_dir}/.data"
13
13
  @gem_dir = gem_dir
14
14
  theme_color = ""
15
- File.open("#{@datas_dir}/theme_color.txt") do |f|
15
+ File.open("#{@data_dir}/theme_color.txt") do |f|
16
16
  theme_color = f.gets.chomp
17
17
  end
18
- @emacs_dir = "#{@datas_dir}/.emacs.d/#{theme_color}"
18
+ @emacs_dir = "#{@data_dir}/.emacs.d/#{theme_color}"
19
19
  end
20
20
 
21
21
  def action(mode_dir: String, is_copy: Bool)
@@ -4,7 +4,7 @@ require 'open3'
4
4
  require 'ruby_learner/version'
5
5
  require 'ruby_learner/common'
6
6
  require 'ruby_learner/sequential_check'
7
- require 'ruby_learner/sequential_check_real'
7
+ require 'ruby_learner/sequential_check_manual'
8
8
  require 'ruby_learner/restore'
9
9
  require 'ruby_learner/copspec'
10
10
 
@@ -16,7 +16,7 @@ module RubyLearner
16
16
  @local_dir = "#{ENV['HOME']}/.ruby_learner"
17
17
  @workshop_dir = "#{@local_dir}/workshop"
18
18
  @restore_dir = "#{@local_dir}/restore"
19
- @datas_dir = "#{@local_dir}/.datas"
19
+ @data_dir = "#{@local_dir}/.data"
20
20
  @gem_dir = File.expand_path("../../../", __FILE__)
21
21
  Common.allocate.init_mk_files(gem_dir: @gem_dir, local_dir: @local_dir)
22
22
  end
@@ -31,9 +31,9 @@ module RubyLearner
31
31
  option :image, aliases: :i, type: :boolean
32
32
  def emacs_key(*args)
33
33
  if options[:image]
34
- system("open #{@datas_dir}/emacs_help.pdf")
34
+ system("open #{@data_dir}/emacs_help.pdf")
35
35
  else
36
- system("cat #{@datas_dir}/emacs_help.org")
36
+ system("cat #{@data_dir}/emacs_help.org")
37
37
  end
38
38
  end
39
39
 
@@ -66,20 +66,21 @@ module RubyLearner
66
66
 
67
67
  desc 'sequential_check [section:1~11] [part:1~3]','learning drill'
68
68
  map "-s" => "sequential_check"
69
- option :real, aliases: :r, type: :boolean
69
+ option :workshop, aliases: :w, typw: :boolean
70
+ option :manual, aliases: :m, type: :boolean
70
71
  option :copspec, aliases: :c, type: :boolean
71
72
  option :next, aliases: :n, type: :boolean
72
73
  option :drill, aliases: :d, type: :boolean
73
74
  option :last, aliases: :l, type: :boolean
74
75
  def sequential_check(*args)
75
76
  begin
76
- mode = File.read("#{@datas_dir}/sequential_mode.txt").chomp
77
+ mode = File.read("#{@data_dir}/sequential_mode.txt").chomp
77
78
  puts "active mode: #{mode}"
78
79
  sequential_check = nil
79
80
  if mode == 'nomal'
80
81
  sequential_check = SequentialCheck.new(@gem_dir, @local_dir)
81
82
  else
82
- sequential_check = SequentialCheckReal.new(@gem_dir, @local_dir)
83
+ sequential_check = SequentialCheckManual.new(@gem_dir, @local_dir)
83
84
  end
84
85
  if options[:drill]
85
86
  sequential_check.drill_contents
@@ -87,10 +88,16 @@ module RubyLearner
87
88
  sequential_check.next_action
88
89
  elsif options[:last]
89
90
  sequential_check.last_re_action
90
- elsif options[:real]
91
+ elsif options[:manual]
91
92
  sequential_check.change_mode
93
+ mode = File.read("#{@data_dir}/sequential_mode.txt").chomp
94
+ puts "active mode changed: #{mode}"
92
95
  elsif options[:copspec]
93
96
  CopSpec.copspec("#{@workshop_dir}/lib/workplace.rb")
97
+ elsif options[:workshop]
98
+ puts "#{@data_dir}/chdir_workshop.sh"
99
+ Dir.chdir "#{@workshop_dir}"
100
+ exec 'fish'
94
101
  else
95
102
  sequential_check.action(args[0], args[1])
96
103
  end
@@ -118,7 +125,7 @@ module RubyLearner
118
125
 
119
126
  desc 'install_emacs','install emacs in your mac'
120
127
  def install_emacs
121
- file_path = "#{@datas_dir}/install_emacs.sh"
128
+ file_path = "#{@data_dir}/install_emacs.sh"
122
129
  system("sh #{file_path}")
123
130
  end
124
131
 
@@ -126,7 +133,7 @@ module RubyLearner
126
133
  def theme(*args)
127
134
  args[0].chomp
128
135
  if args[0] == 'black' || args[0] == 'white'
129
- Common.allocate.change_theme(color: args[0], datas_dir: @datas_dir)
136
+ Common.allocate.change_theme(color: args[0], datas_dir: @data_dir)
130
137
  else
131
138
  puts "you can change the theme_color, only black or white."
132
139
  end
@@ -8,10 +8,10 @@ class SequentialCheck
8
8
  @local_dir = local_dir
9
9
  @workshop_dir = "#{local_dir}/workshop"
10
10
  @restore_dir = "#{local_dir}/restore"
11
- @datas_dir = "#{local_dir}/.datas"
11
+ @data_dir = "#{local_dir}/.data"
12
12
  end
13
13
 
14
- # non opt, -next
14
+ # non opt
15
15
  def action(sec, par)
16
16
  puts "section_#{sec}/part_#{par}"
17
17
  seq_dir = "#{@gem_dir}/contents/questions/sequential_check/section_#{sec}/part_#{par}"
@@ -53,10 +53,10 @@ class SequentialCheck
53
53
 
54
54
  # -ch_mode
55
55
  def change_mode
56
- mode_txt = "#{@datas_dir}/sequential_mode.txt"
56
+ mode_txt = "#{@data_dir}/sequential_mode.txt"
57
57
  case File.read(mode_txt).chomp
58
58
  when 'nomal'
59
- File.write(mode_txt, 'real')
59
+ File.write(mode_txt, 'manual')
60
60
  else
61
61
  File.write(mode_txt, 'nomal')
62
62
  end
@@ -75,7 +75,7 @@ class SequentialCheck
75
75
 
76
76
  def write_final_history(sec, par)
77
77
  chmoded = 0
78
- file_dir = "#{@datas_dir}/final_history_sequential.txt"
78
+ file_dir = "#{@data_dir}/final_history_sequential.txt"
79
79
  begin
80
80
  File.write(file_dir, "#{sec}-#{par}")
81
81
  rescue => error
@@ -89,7 +89,7 @@ class SequentialCheck
89
89
 
90
90
  def get_final_history
91
91
  final_history = ''
92
- File.open("#{@datas_dir}/final_history_sequential.txt") do |f|
92
+ File.open("#{@data_dir}/final_history_sequential.txt") do |f|
93
93
  final_history = f.gets
94
94
  end
95
95
  final_sec = final_history.match(/(.*)\-/)[1].to_i
@@ -2,28 +2,39 @@ require 'ruby_learner/common'
2
2
  require 'ruby_learner/sequential_check'
3
3
  require 'ruby_learner/rubocop_rspec_check'
4
4
 
5
- class SequentialCheckReal < SequentialCheck
5
+ class SequentialCheckManual < SequentialCheck
6
6
  def initialize(x, y)
7
7
  super
8
- @theme_color = File.read("#{@datas_dir}/theme_color.txt").chomp
8
+ @theme_color = File.read("#{@data_dir}/theme_color.txt").chomp
9
9
  end
10
10
 
11
11
  def action(sec, par)
12
- start_time = Time.now
13
12
  puts "section_#{sec}/part_#{par}"
14
13
  mode_dir = "#{@gem_dir}/contents/questions/sequential_check/section_#{sec}/part_#{par}"
15
14
  %w{lib/workplace.rb lib/sentence.org lib/answer.rb spec/workplace_spec.rb}.each do |path|
16
15
  FileUtils.cp("#{mode_dir}/#{path}", "#{@workshop_dir}/#{path}")
17
16
  end
18
- system "cd #{@workshop_dir}/lib && emacs -nw -q -l #{@datas_dir}/.emacs.d/#{@theme_color}/init.el sentence.org workplace.rb"
19
17
  write_final_history(sec, par)
20
- elapsed_time = Common.allocate.time_check(start_time: start_time)
21
- p "#{elapsed_time} sec"
18
+ intro_next_command
22
19
  restore = Restore.new
23
- restore.save(file: "#{@workshop_dir}/lib/workplace.rb", elapsed_time: elapsed_time)
20
+ restore.save(file: "#{@workshop_dir}/lib/workplace.rb", elapsed_time: 0.0)
24
21
  end
25
22
 
26
23
  def last_re_action
27
- system "cd #{@workshop_dir}/lib && emacs -nw -q -l #{@datas_dir}/.emacs.d/#{@theme_color}/init.el sentence.org workplace.rb"
24
+ puts "This mode doesn't have last-option"
25
+ end
26
+
27
+ private
28
+
29
+ def intro_next_command
30
+ puts 'Practice setting ok.'
31
+ puts 'Put under commands.'
32
+ puts '$ emacs lib/sentence.org lib/workplace.rb'
33
+ puts '- rspec check'
34
+ puts '$ rspec spec'
35
+ puts '- rubocop check'
36
+ puts '$ rubocop lib/workplace.rb'
37
+ puts '- rspec and rubocop checks'
38
+ puts '$ ruby_learner -s -c'
28
39
  end
29
40
  end
@@ -1,3 +1,3 @@
1
1
  module RubyLearner
2
- VERSION = "1.2.7"
2
+ VERSION = "1.2.8"
3
3
  end
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.2.7
4
+ version: 1.2.8
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-11-27 00:00:00.000000000 Z
11
+ date: 2018-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -101,30 +101,31 @@ files:
101
101
  - bin/console
102
102
  - bin/new_terminal
103
103
  - bin/setup
104
- - contents/datas/emacs.d/black/answer.el
105
- - contents/datas/emacs.d/black/init.el
106
- - contents/datas/emacs.d/inits/line-num.el
107
- - contents/datas/emacs.d/markdown-mode/markdown-mode.el
108
- - contents/datas/emacs.d/ruby-mode/inf-ruby.el
109
- - contents/datas/emacs.d/ruby-mode/rdoc-mode.el
110
- - contents/datas/emacs.d/ruby-mode/ruby-electric.el
111
- - contents/datas/emacs.d/ruby-mode/ruby-mode.el
112
- - contents/datas/emacs.d/ruby-mode/ruby-style.el
113
- - contents/datas/emacs.d/ruby-mode/rubydb2x.el
114
- - contents/datas/emacs.d/ruby-mode/rubydb3x.el
115
- - contents/datas/emacs.d/themes/dracula-theme.el
116
- - contents/datas/emacs.d/themes/iceberg-theme.el
117
- - contents/datas/emacs.d/themes/my-misterioso-theme.el
118
- - contents/datas/emacs.d/themes/my-whiteboard-theme.el
119
- - contents/datas/emacs.d/themes/my-wombat-theme.el
120
- - contents/datas/emacs.d/white/answer.el
121
- - contents/datas/emacs.d/white/init.el
122
- - contents/datas/emacs_help.org
123
- - contents/datas/emacs_help.pdf
124
- - contents/datas/final_history_sequential.txt
125
- - contents/datas/install_emacs.sh
126
- - contents/datas/sequential_mode.txt
127
- - contents/datas/theme_color.txt
104
+ - contents/data/chdir_workshop.sh
105
+ - contents/data/emacs.d/black/answer.el
106
+ - contents/data/emacs.d/black/init.el
107
+ - contents/data/emacs.d/inits/line-num.el
108
+ - contents/data/emacs.d/markdown-mode/markdown-mode.el
109
+ - contents/data/emacs.d/ruby-mode/inf-ruby.el
110
+ - contents/data/emacs.d/ruby-mode/rdoc-mode.el
111
+ - contents/data/emacs.d/ruby-mode/ruby-electric.el
112
+ - contents/data/emacs.d/ruby-mode/ruby-mode.el
113
+ - contents/data/emacs.d/ruby-mode/ruby-style.el
114
+ - contents/data/emacs.d/ruby-mode/rubydb2x.el
115
+ - contents/data/emacs.d/ruby-mode/rubydb3x.el
116
+ - contents/data/emacs.d/themes/dracula-theme.el
117
+ - contents/data/emacs.d/themes/iceberg-theme.el
118
+ - contents/data/emacs.d/themes/my-misterioso-theme.el
119
+ - contents/data/emacs.d/themes/my-whiteboard-theme.el
120
+ - contents/data/emacs.d/themes/my-wombat-theme.el
121
+ - contents/data/emacs.d/white/answer.el
122
+ - contents/data/emacs.d/white/init.el
123
+ - contents/data/emacs_help.org
124
+ - contents/data/emacs_help.pdf
125
+ - contents/data/final_history_sequential.txt
126
+ - contents/data/install_emacs.sh
127
+ - contents/data/sequential_mode.txt
128
+ - contents/data/theme_color.txt
128
129
  - contents/questions/random_check/.rspec
129
130
  - contents/questions/random_check/random_h.rb
130
131
  - contents/questions/random_check/section_1/.rspec
@@ -422,7 +423,7 @@ files:
422
423
  - lib/ruby_learner/rubocop_rspec_check.rb
423
424
  - lib/ruby_learner/ruby_learner.rb
424
425
  - lib/ruby_learner/sequential_check.rb
425
- - lib/ruby_learner/sequential_check_real.rb
426
+ - lib/ruby_learner/sequential_check_manual.rb
426
427
  - lib/ruby_learner/version.rb
427
428
  - ruby_learner.gemspec
428
429
  homepage: ''