ruby_learner 1.2.7 → 1.2.8
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/contents/data/chdir_workshop.sh +3 -0
- data/contents/{datas → data}/emacs.d/black/answer.el +6 -6
- data/contents/{datas → data}/emacs.d/black/init.el +6 -6
- data/contents/{datas → data}/emacs.d/inits/line-num.el +0 -0
- data/contents/{datas → data}/emacs.d/markdown-mode/markdown-mode.el +0 -0
- data/contents/{datas → data}/emacs.d/ruby-mode/inf-ruby.el +0 -0
- data/contents/{datas → data}/emacs.d/ruby-mode/rdoc-mode.el +0 -0
- data/contents/{datas → data}/emacs.d/ruby-mode/ruby-electric.el +0 -0
- data/contents/{datas → data}/emacs.d/ruby-mode/ruby-mode.el +0 -0
- data/contents/{datas → data}/emacs.d/ruby-mode/ruby-style.el +0 -0
- data/contents/{datas → data}/emacs.d/ruby-mode/rubydb2x.el +0 -0
- data/contents/{datas → data}/emacs.d/ruby-mode/rubydb3x.el +0 -0
- data/contents/{datas → data}/emacs.d/themes/dracula-theme.el +0 -0
- data/contents/{datas → data}/emacs.d/themes/iceberg-theme.el +0 -0
- data/contents/{datas → data}/emacs.d/themes/my-misterioso-theme.el +0 -0
- data/contents/{datas → data}/emacs.d/themes/my-whiteboard-theme.el +0 -0
- data/contents/{datas → data}/emacs.d/themes/my-wombat-theme.el +0 -0
- data/contents/{datas → data}/emacs.d/white/answer.el +6 -6
- data/contents/{datas → data}/emacs.d/white/init.el +6 -6
- data/contents/{datas → data}/emacs_help.org +0 -0
- data/contents/{datas → data}/emacs_help.pdf +0 -0
- data/contents/{datas → data}/final_history_sequential.txt +0 -0
- data/contents/{datas → data}/install_emacs.sh +0 -0
- data/contents/{datas → data}/sequential_mode.txt +0 -0
- data/contents/{datas → data}/theme_color.txt +0 -0
- data/lib/ruby_learner/common.rb +3 -3
- data/lib/ruby_learner/rubocop_rspec_check.rb +3 -3
- data/lib/ruby_learner/ruby_learner.rb +17 -10
- data/lib/ruby_learner/sequential_check.rb +6 -6
- data/lib/ruby_learner/{sequential_check_real.rb → sequential_check_manual.rb} +19 -8
- data/lib/ruby_learner/version.rb +1 -1
- metadata +28 -27
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 831412cfa90441e145673a5a5907343523b75ef4
|
4
|
+
data.tar.gz: 0f3a7087213102da48a7b6d37f5f83991678cb2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d51d0d7443729ff1727a99a37c730e8e4f75f70ff1051060ab9b11b527f823644fce3bafda8d70555dd35a0c3e31bf94e46891d83edbbd086882ee09768ee390
|
7
|
+
data.tar.gz: 4a698dccc635d9e898f75ca0ea88cebd928a1b6cc77c29c47c88134b3a6a186d1df9a19125fd7b8c7b5facb550d1b77b0e96abe861b50759592d829fb3b91e6f
|
data/Gemfile.lock
CHANGED
@@ -6,10 +6,10 @@
|
|
6
6
|
(package-initialize)
|
7
7
|
|
8
8
|
;; elファイルの置き場所を設定
|
9
|
-
(setq load-path (cons "~/.ruby_learner/.
|
10
|
-
(setq load-path (cons "~/.ruby_learner/.
|
11
|
-
(setq load-path (cons "~/.ruby_learner/.
|
12
|
-
(setq load-path (cons "~/.ruby_learner/.
|
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/.
|
27
|
-
(setq custom-theme-directory "~/.ruby_learner/.
|
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/.
|
10
|
-
(setq load-path (cons "~/.ruby_learner/.
|
11
|
-
(setq load-path (cons "~/.ruby_learner/.
|
12
|
-
(setq load-path (cons "~/.ruby_learner/.
|
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/.
|
15
|
-
(setq custom-theme-directory "~/.ruby_learner/.
|
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
|
;; 起動時にスタートアップ画面を表示しない
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -6,10 +6,10 @@
|
|
6
6
|
(package-initialize)
|
7
7
|
|
8
8
|
;; elファイルの置き場所を設定
|
9
|
-
(setq load-path (cons "~/.ruby_learner/.
|
10
|
-
(setq load-path (cons "~/.ruby_learner/.
|
11
|
-
(setq load-path (cons "~/.ruby_learner/.
|
12
|
-
(setq load-path (cons "~/.ruby_learner/.
|
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/.
|
27
|
-
(setq custom-theme-directory "~/.ruby_learner/.
|
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/.
|
10
|
-
(setq load-path (cons "~/.ruby_learner/.
|
11
|
-
(setq load-path (cons "~/.ruby_learner/.
|
12
|
-
(setq load-path (cons "~/.ruby_learner/.
|
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/.
|
15
|
-
(setq custom-theme-directory "~/.ruby_learner/.
|
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
|
File without changes
|
File without changes
|
File without changes
|
data/lib/ruby_learner/common.rb
CHANGED
@@ -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}/.
|
19
|
-
system("cp -R #{gem_contents_dir}/
|
20
|
-
system("cd #{local_dir}/.
|
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
|
-
@
|
12
|
+
@data_dir = "#{local_dir}/.data"
|
13
13
|
@gem_dir = gem_dir
|
14
14
|
theme_color = ""
|
15
|
-
File.open("#{@
|
15
|
+
File.open("#{@data_dir}/theme_color.txt") do |f|
|
16
16
|
theme_color = f.gets.chomp
|
17
17
|
end
|
18
|
-
@emacs_dir = "#{@
|
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/
|
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
|
-
@
|
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 #{@
|
34
|
+
system("open #{@data_dir}/emacs_help.pdf")
|
35
35
|
else
|
36
|
-
system("cat #{@
|
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 :
|
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("#{@
|
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 =
|
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[:
|
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 = "#{@
|
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: @
|
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
|
-
@
|
11
|
+
@data_dir = "#{local_dir}/.data"
|
12
12
|
end
|
13
13
|
|
14
|
-
# non opt
|
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 = "#{@
|
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, '
|
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 = "#{@
|
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("#{@
|
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
|
5
|
+
class SequentialCheckManual < SequentialCheck
|
6
6
|
def initialize(x, y)
|
7
7
|
super
|
8
|
-
@theme_color = File.read("#{@
|
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
|
-
|
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:
|
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
|
-
|
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
|
data/lib/ruby_learner/version.rb
CHANGED
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.
|
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
|
+
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/
|
105
|
-
- contents/
|
106
|
-
- contents/
|
107
|
-
- contents/
|
108
|
-
- contents/
|
109
|
-
- contents/
|
110
|
-
- contents/
|
111
|
-
- contents/
|
112
|
-
- contents/
|
113
|
-
- contents/
|
114
|
-
- contents/
|
115
|
-
- contents/
|
116
|
-
- contents/
|
117
|
-
- contents/
|
118
|
-
- contents/
|
119
|
-
- contents/
|
120
|
-
- contents/
|
121
|
-
- contents/
|
122
|
-
- contents/
|
123
|
-
- contents/
|
124
|
-
- contents/
|
125
|
-
- contents/
|
126
|
-
- contents/
|
127
|
-
- contents/
|
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/
|
426
|
+
- lib/ruby_learner/sequential_check_manual.rb
|
426
427
|
- lib/ruby_learner/version.rb
|
427
428
|
- ruby_learner.gemspec
|
428
429
|
homepage: ''
|