ruby_learner 1.2.6 → 1.2.7
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 +3 -3
- data/contents/datas/emacs.d/black/init.el +8 -1
- data/contents/datas/emacs.d/white/init.el +8 -0
- data/contents/datas/sequential_mode.txt +1 -0
- data/contents/workshop/rubocop.yml +2 -0
- data/docs/{thesis/manual.org → manual.org} +0 -0
- data/docs/{todo → seminar}/9-27.org +0 -0
- data/docs/thesis/final_presentation/IMRD/ctrlZ_fg_method.org +7 -0
- data/docs/thesis/final_presentation/IMRD/why_not_web.org +9 -0
- data/docs/thesis/{mid_term.pptx → midterm_presentation/others/5464_takaki_midterm.pptx} +0 -0
- data/docs/thesis/midterm_presentation/others/mid_term.pptx +0 -0
- data/docs/thesis/midterm_presentation/ruby_learner_thesis/.ruby_learner.tex.swp +0 -0
- data/docs/thesis/midterm_presentation/ruby_learner_thesis/jlisting.sty +216 -0
- data/docs/thesis/midterm_presentation/ruby_learner_thesis/rspec_rubocop.png +0 -0
- data/docs/thesis/midterm_presentation/ruby_learner_thesis/ruby_learner.aux +22 -0
- data/docs/thesis/midterm_presentation/ruby_learner_thesis/ruby_learner.dvi +0 -0
- data/docs/thesis/midterm_presentation/ruby_learner_thesis/ruby_learner.log +152 -0
- data/docs/thesis/midterm_presentation/ruby_learner_thesis/ruby_learner.md +35 -0
- data/docs/thesis/midterm_presentation/ruby_learner_thesis/ruby_learner.pdf +0 -0
- data/docs/thesis/midterm_presentation/ruby_learner_thesis/ruby_learner.tex +79 -0
- data/docs/thesis/midterm_presentation/ruby_learner_thesis/test.md +39 -0
- data/docs/thesis/{competing_services.org → research/competing_services.org} +0 -0
- data/lib/ruby_learner/common.rb +0 -29
- data/lib/ruby_learner/copspec.rb +49 -0
- data/lib/ruby_learner/pair_timer.rb +9 -19
- data/lib/ruby_learner/restore.rb +81 -0
- data/lib/ruby_learner/{typing_practice.rb → rubocop_rspec_check.rb} +25 -24
- data/lib/ruby_learner/ruby_learner.rb +47 -56
- data/lib/ruby_learner/sequential_check.rb +110 -0
- data/lib/ruby_learner/sequential_check_real.rb +29 -0
- data/lib/ruby_learner/version.rb +1 -1
- metadata +25 -11
- data/docs/thesis/~$mid_term.pptx +0 -0
- data/lib/ruby_learner/popup_per_time_for_background.rb +0 -14
- data/lib/ruby_learner/practice_datas.txt +0 -0
- data/lib/ruby_learner/sequential_main.rb +0 -207
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1c3893762a7773358735ead1eb6ea4739ee4f93e
|
4
|
+
data.tar.gz: d9feb7da78e6dc3c069ea52bcbc47a770cd30f2e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00ef94ebb1db3aea4ec3c418d0db58f7b9d5c5d9ee2a73a0f3849975d05f9b63123b2c2b3f8244e4a651d3593b5767bf330b12a3173918f18b62436c4d57551d
|
7
|
+
data.tar.gz: 4feb37766729553b8df1db578a04b77f4583858127cc3a6a051caf7dc94eee07dedc11603fe7fea36f4680e8b4cfaa29dd6c8357a3a6d40b261dd31ea2d3af37
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
ruby_learner (1.2.
|
4
|
+
ruby_learner (1.2.6)
|
5
5
|
rspec (~> 3.8)
|
6
6
|
rubocop (~> 0.55.0)
|
7
7
|
thor (~> 0.20.0)
|
@@ -23,7 +23,7 @@ GEM
|
|
23
23
|
rspec-mocks (~> 3.8.0)
|
24
24
|
rspec-core (3.8.0)
|
25
25
|
rspec-support (~> 3.8.0)
|
26
|
-
rspec-expectations (3.8.
|
26
|
+
rspec-expectations (3.8.2)
|
27
27
|
diff-lcs (>= 1.2.0, < 2.0)
|
28
28
|
rspec-support (~> 3.8.0)
|
29
29
|
rspec-mocks (3.8.0)
|
@@ -38,7 +38,7 @@ GEM
|
|
38
38
|
ruby-progressbar (~> 1.7)
|
39
39
|
unicode-display_width (~> 1.0, >= 1.0.1)
|
40
40
|
ruby-progressbar (1.10.0)
|
41
|
-
thor (0.20.
|
41
|
+
thor (0.20.3)
|
42
42
|
unicode-display_width (1.4.0)
|
43
43
|
|
44
44
|
PLATFORMS
|
@@ -1,4 +1,3 @@
|
|
1
|
-
|
2
1
|
(require 'package)
|
3
2
|
(add-to-list 'package-archives '("org" . "http:/orgmode.org/elpa/") t)
|
4
3
|
(add-to-list 'package-archives '("org-plus-contrib" . "https:/orgmode.org/elpa/contrib") t)
|
@@ -56,6 +55,14 @@
|
|
56
55
|
;; 選択部分のインデント
|
57
56
|
(global-set-key "\C-x\C-i" 'indent-region)
|
58
57
|
|
58
|
+
(defun show-answer ()
|
59
|
+
(interactive)
|
60
|
+
(setq w (selected-window))
|
61
|
+
(setq w3 (split-window w nil 'left))
|
62
|
+
(find-file "~/.ruby_learner/workshop/lib/answer.rb"))
|
63
|
+
|
64
|
+
(global-set-key (kbd "C-c C-a") 'show-answer)
|
65
|
+
|
59
66
|
;; ======================================================================
|
60
67
|
;; Ruby mode
|
61
68
|
;; ======================================================================
|
@@ -55,6 +55,14 @@
|
|
55
55
|
;; 選択部分のインデント
|
56
56
|
(global-set-key "\C-x\C-i" 'indent-region)
|
57
57
|
|
58
|
+
(defun show-answer ()
|
59
|
+
(interactive)
|
60
|
+
(setq w (selected-window))
|
61
|
+
(setq w3 (split-window w nil 'left))
|
62
|
+
(find-file "~/.ruby_learner/workshop/lib/answer.rb"))
|
63
|
+
|
64
|
+
(global-set-key (kbd "C-c C-a") 'show-answer)
|
65
|
+
|
58
66
|
;; ======================================================================
|
59
67
|
;; Ruby mode
|
60
68
|
;; ======================================================================
|
@@ -0,0 +1 @@
|
|
1
|
+
nomal
|
File without changes
|
File without changes
|
@@ -0,0 +1,9 @@
|
|
1
|
+
* Introduction
|
2
|
+
- webでのコンテンツ(テキスト・サービス)提供について.
|
3
|
+
* Method
|
4
|
+
- railsでテキストの提供
|
5
|
+
- railsで同様のサービスの提供
|
6
|
+
- railsで進捗管理
|
7
|
+
* Result and Discussion
|
8
|
+
- RLは実際の開発環境に近い状態でのRubyの習得を目指しているので,webでの同様のサービス提供は目的が違っている.同時にテキスト提供や進捗管理をwebで行う場合は使用者に負担になるのではないか.
|
9
|
+
- すなわち,webでの提供はやめるべきではないか.
|
Binary file
|
Binary file
|
@@ -0,0 +1,216 @@
|
|
1
|
+
\NeedsTeXFormat{LaTeX2e}
|
2
|
+
\def\filedate{2006/02/20}
|
3
|
+
\def\fileversion{0.2}
|
4
|
+
\ProvidesPackage{jlisting}[\filedate\space\fileversion\space(Thor)]
|
5
|
+
%
|
6
|
+
\newcount\lst@nextchar
|
7
|
+
\let\lst@@ProcessSpace\lst@ProcessSpace
|
8
|
+
\def\lst@ProcessSpace#1{%
|
9
|
+
\lst@check@chartype{#1}%
|
10
|
+
\lst@@ProcessSpace
|
11
|
+
\lst@whitespacetrue}
|
12
|
+
\let\lst@@ProcessLetter\lst@ProcessLetter
|
13
|
+
\def\lst@ProcessLetter#1#2{%
|
14
|
+
\lst@check@chartype{#2}%
|
15
|
+
{\lst@@ProcessLetter{#1}}%
|
16
|
+
\relax}
|
17
|
+
\let\lst@@ProcessDigit\lst@ProcessDigit
|
18
|
+
\def\lst@ProcessDigit#1#2{%
|
19
|
+
\lst@check@chartype{#2}%
|
20
|
+
{\lst@@ProcessDigit{#1}}%
|
21
|
+
\relax}
|
22
|
+
\let\lst@@ProcessOther\lst@ProcessOther
|
23
|
+
\def\lst@ProcessOther#1#2{%
|
24
|
+
\lst@check@chartype{#2}%
|
25
|
+
{\lst@@ProcessOther{#1}}%
|
26
|
+
\relax}
|
27
|
+
\let\lst@@ProcessTabulator\lst@ProcessTabulator
|
28
|
+
\def\lst@ProcessTabulator#1{%
|
29
|
+
\lst@check@chartype{#1}%
|
30
|
+
\lst@@ProcessTabulator
|
31
|
+
\relax}
|
32
|
+
\def\lst@check@chartype#1#2#3{%
|
33
|
+
\edef\@tempa{\lst@nextchar=`\string#1\relax}%
|
34
|
+
\afterassignment\remove@to@nnil
|
35
|
+
\@tempa\@nnil
|
36
|
+
#2%
|
37
|
+
\ifnum\lst@nextchar<\@cclvi
|
38
|
+
#3%
|
39
|
+
\else
|
40
|
+
\lst@ifletter \else \lst@OutputOther \fi
|
41
|
+
\lst@whitespacefalse
|
42
|
+
\expandafter\lst@AppendJchar
|
43
|
+
\fi
|
44
|
+
#1}
|
45
|
+
\def\lst@AppendJchar#1#2{%
|
46
|
+
\lst@check@chartype{#2}%
|
47
|
+
{\advance\lst@length\@ne\lst@Append{#1}}%
|
48
|
+
\relax}
|
49
|
+
\def\lst@check@chartype@BOL#1{%
|
50
|
+
\edef\@tempa{\lst@nextchar=`\string#1\relax}%
|
51
|
+
\afterassignment\remove@to@nnil
|
52
|
+
\@tempa\@nnil
|
53
|
+
\ifnum\lst@nextchar<\@cclvi\else
|
54
|
+
\lst@whitespacefalse
|
55
|
+
\expandafter\lst@AppendJchar
|
56
|
+
\fi
|
57
|
+
#1}
|
58
|
+
\def\lst@InputListing#1{%
|
59
|
+
\begingroup
|
60
|
+
\lsthk@PreSet \gdef\lst@intname{#1}%
|
61
|
+
\expandafter\lstset\expandafter{\lst@set}%
|
62
|
+
\lsthk@DisplayStyle
|
63
|
+
\catcode\active=\active
|
64
|
+
\lst@Init\relax \let\lst@gobble\z@
|
65
|
+
\lst@SkipToFirst
|
66
|
+
\lst@ifprint \def\lst@next{\lst@get@filecontents{#1}}%
|
67
|
+
\else \let\lst@next\@empty
|
68
|
+
\fi
|
69
|
+
\lst@next
|
70
|
+
\lst@DeInit
|
71
|
+
\endgroup}
|
72
|
+
\newread\lst@inputfile
|
73
|
+
\def\lst@get@filecontents#1{%
|
74
|
+
\let\lst@filecontents\@empty
|
75
|
+
\openin\lst@inputfile=#1\relax
|
76
|
+
\let\@lst@get@filecontents@prevline\relax
|
77
|
+
\lst@get@filecontents@loop
|
78
|
+
\closein\lst@inputfile
|
79
|
+
\lst@filecontents\empty}
|
80
|
+
\def\lst@get@filecontents@loop{%
|
81
|
+
\read\lst@inputfile to\@lst@get@filecontents@currline
|
82
|
+
\ifx\@lst@get@filecontents@prevline\relax\else
|
83
|
+
\expandafter\expandafter\expandafter\def
|
84
|
+
\expandafter\expandafter\expandafter\lst@filecontents
|
85
|
+
\expandafter\expandafter\expandafter{%
|
86
|
+
\expandafter\lst@filecontents\@lst@get@filecontents@prevline}%
|
87
|
+
\fi
|
88
|
+
\let\@lst@get@filecontents@prevline\@lst@get@filecontents@currline
|
89
|
+
\ifeof\lst@inputfile\else
|
90
|
+
\expandafter\lst@get@filecontents@loop
|
91
|
+
\fi}
|
92
|
+
%%% [$B$3$N=hM}$b!$AjEv6/0z$G$9!%(B]
|
93
|
+
\def\lst@BOLGobble{%
|
94
|
+
\ifnum\lst@gobble>\z@
|
95
|
+
\@tempcnta\lst@gobble\relax
|
96
|
+
\expandafter\lst@BOLGobble@
|
97
|
+
\else
|
98
|
+
\expandafter\lst@check@chartype@BOL
|
99
|
+
\fi}
|
100
|
+
\def\lst@BOLGobble@#1{%
|
101
|
+
\let\lst@next#1%
|
102
|
+
\ifx \lst@next\relax\else
|
103
|
+
\ifx \lst@next\lst@MProcessListing\else
|
104
|
+
\ifx \lst@next\lst@ProcessFormFeed\else
|
105
|
+
\ifx \lst@next\lstenv@backslash
|
106
|
+
\let\lst@next\lstenv@BOLGobble@@
|
107
|
+
\else
|
108
|
+
\let\lst@next\lst@BOLGobble@@
|
109
|
+
\ifx #1\lst@ProcessTabulator
|
110
|
+
\advance\@tempcnta-\lst@tabsize\relax
|
111
|
+
\ifnum\@tempcnta<\z@
|
112
|
+
\lst@length-\@tempcnta \lst@PreGotoTabStop
|
113
|
+
\fi
|
114
|
+
\else
|
115
|
+
\edef\@tempa{\lst@nextchar=`\string#1\relax}%
|
116
|
+
\@tempa
|
117
|
+
\ifnum\lst@nextchar<\@cclvi\else
|
118
|
+
\advance\@tempcnta\m@ne
|
119
|
+
\fi
|
120
|
+
\advance\@tempcnta\m@ne
|
121
|
+
\fi
|
122
|
+
\fi \fi \fi \fi
|
123
|
+
\lst@next}
|
124
|
+
\def\lst@BOLGobble@@{%
|
125
|
+
\ifnum\@tempcnta>\z@
|
126
|
+
\expandafter\lst@BOLGobble@
|
127
|
+
\else
|
128
|
+
\expandafter\lst@check@chartype@BOL
|
129
|
+
\fi
|
130
|
+
}
|
131
|
+
%
|
132
|
+
% \begin{$B=$@5;v9`(B}{1.3}
|
133
|
+
% $B$A$g$C$H$7$?=$@5(B
|
134
|
+
\gdef\lst@breakProcessOther#1{\lst@ProcessOther#1}
|
135
|
+
% $B%=!<%9%3!<%IL\<!$K$*$1$kJ8;z$HHV9f$N6u$-(B
|
136
|
+
\let \l@lstlisting = \l@figure
|
137
|
+
% $B%-%c%W%7%g%s$H%=!<%9%3!<%IL\<!$KBP$9$kF|K\8lBP1~(B
|
138
|
+
\def\lstlistingname{$B%=!<%9%3!<%I(B}
|
139
|
+
\def\lstlistlistingname{$B%=!<%9%3!<%IL\<!(B}
|
140
|
+
% \end{$B=$@5;v9`(B}
|
141
|
+
\endinput
|
142
|
+
%
|
143
|
+
%#!platex
|
144
|
+
\documentclass[papersize]{jsarticle}
|
145
|
+
% Macros
|
146
|
+
\IfFileExists{dvipdfmx.def}{%
|
147
|
+
\usepackage[dvipdfmx]{color,graphicx}%
|
148
|
+
}{%
|
149
|
+
\usepackage[dvipdfm]{color,graphicx}%
|
150
|
+
}
|
151
|
+
\usepackage{listings}[2004/09/07]
|
152
|
+
\usepackage{jlisting}[2006/02/20]
|
153
|
+
\usepackage{url}
|
154
|
+
\usepackage{verbatim}
|
155
|
+
|
156
|
+
\makeatletter
|
157
|
+
% Original Macros
|
158
|
+
\def\email#1{\gdef\@email{\texttt{#1}}}
|
159
|
+
\def\homepage#1{\gdef\@homepage{\texttt{#1}}}
|
160
|
+
\def\mac#1{\textsf{#1}}
|
161
|
+
\def\URL#1{\texttt{#1}}
|
162
|
+
\def\src#1{\texttt{#1}}
|
163
|
+
|
164
|
+
% Dvipdfmx.def
|
165
|
+
\def\dvipdfmxDefi{http://tex.dante.jp/ok/dvipdfmx/}
|
166
|
+
\def\dvipdfmxDefii{http://ftp.ktug.or.kr/KTUG/dvipdfmx/contrib/latex/}
|
167
|
+
|
168
|
+
\IfFileExists{dvipdfmx.def}{%
|
169
|
+
\let \IfDvipdfmxDef = \empty \relax}{%
|
170
|
+
\typeout{^^Jget dvipdfmx.def at \dvipdfmxDefi^^J
|
171
|
+
or \dvipdfmxDefii^^J}%
|
172
|
+
\def\IfDvipdfmxDef{Get \src{dvipdfmx.def} at \URL \dvipdfmxDefii \\
|
173
|
+
or \URL \dvipdfmxDefi.}%
|
174
|
+
}
|
175
|
+
|
176
|
+
% Author Info
|
177
|
+
\author {Th\'or Watanabe\thanks \@email \space \thanks \@homepage}
|
178
|
+
\title {\mac{jlisting.sty}\\
|
179
|
+
---Japanese Localized Patch File of \mac{listings}---}
|
180
|
+
\email {thor@tex.dante.jp}
|
181
|
+
\homepage {http://tex.dante.jp/typo/}
|
182
|
+
\date {2006/02/20}
|
183
|
+
|
184
|
+
\makeatother
|
185
|
+
|
186
|
+
\begin{document}
|
187
|
+
\maketitle
|
188
|
+
%\IfDvipdfmxDef
|
189
|
+
|
190
|
+
\section{$B$A$g$C$H$7$?@bL@(B}% Short Description
|
191
|
+
|
192
|
+
$B1|B<@2I';a$N7G<(HD$N!VHFMQE*$JIbF0BN!W$H$$$&0lO"$N=q$-9~$_$+$i(B
|
193
|
+
$BE>:\$7$^$7$?!#(B
|
194
|
+
|
195
|
+
\begin{quote}
|
196
|
+
\url{http://http://cise.edu.mie-u.ac.jp/~okumura/texfaq/qa/21172.html}\\
|
197
|
+
\url{http://http://cise.edu.mie-u.ac.jp/~okumura/texfaq/qa/21184.html}\\
|
198
|
+
\url{http://http://cise.edu.mie-u.ac.jp/~okumura/texfaq/qa/21189.html}\\
|
199
|
+
\url{http://http://cise.edu.mie-u.ac.jp/~okumura/texfaq/qa/21197.html}
|
200
|
+
\end{quote}
|
201
|
+
|
202
|
+
Copyright $B$O5H1JE/H~;a$K$"$k$N$@$H;W$$$^$9!%(B
|
203
|
+
|
204
|
+
\section{$B99?7MzNr(B}% ChageLogs
|
205
|
+
|
206
|
+
\begin{description}
|
207
|
+
\item[ver.~0.1 (2004/03/24)]
|
208
|
+
$B$H$j$"$($:8x3+!%(B
|
209
|
+
\item[ver.~0.2 (2006/02/20)]
|
210
|
+
\verb|\lst@breakProcessOther| $BL?Na$NDj5A$NDI2C!%(B
|
211
|
+
\end{description}
|
212
|
+
|
213
|
+
\section{$B%=!<%9%3!<%I(B}
|
214
|
+
\par\narrowbaselines
|
215
|
+
\verbatiminput{jlisting.sty}
|
216
|
+
\end{document}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
\relax
|
2
|
+
\citation{Oshimi}
|
3
|
+
\citation{Progate}
|
4
|
+
\citation{codecademy}
|
5
|
+
\citation{GitDevelopment}
|
6
|
+
\citation{RubyGems}
|
7
|
+
\citation{rspec}
|
8
|
+
\citation{editor_learner}
|
9
|
+
\citation{rubocop}
|
10
|
+
\bibcite{Oshimi}{1}
|
11
|
+
\bibcite{Progate}{2}
|
12
|
+
\bibcite{codecademy}{3}
|
13
|
+
\bibcite{GitDevelopment}{4}
|
14
|
+
\bibcite{RubyGems}{5}
|
15
|
+
\bibcite{rspec}{6}
|
16
|
+
\bibcite{editor_learner}{7}
|
17
|
+
\bibcite{rubocop}{8}
|
18
|
+
\@writefile{toc}{\contentsline {section}{\numberline {1}背景}{1}}
|
19
|
+
\@writefile{toc}{\contentsline {section}{\numberline {2}手法}{1}}
|
20
|
+
\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces ruby\_learnerのrspecとrubocopを用いた2段階チェック構造.}}{1}}
|
21
|
+
\newlabel{fig:one}{{1}{1}}
|
22
|
+
\@writefile{toc}{\contentsline {section}{\numberline {3}予想される結果}{1}}
|
@@ -0,0 +1,152 @@
|
|
1
|
+
This is e-pTeX, Version 3.14159265-p3.7.1-161114-2.6 (utf8.euc) (TeX Live 2017) (preloaded format=platex 2018.3.14) 17 SEP 2018 11:44
|
2
|
+
entering extended mode
|
3
|
+
restricted \write18 enabled.
|
4
|
+
%&-line parsing enabled.
|
5
|
+
**ruby_learner.tex
|
6
|
+
(./ruby_learner.tex
|
7
|
+
pLaTeX2e <2017/10/28>+4 (based on LaTeX2e <2017-04-15>)
|
8
|
+
Babel <3.18> and hyphenation patterns for 84 language(s) loaded.
|
9
|
+
(/usr/local/texlive/2017/texmf-dist/tex/platex/jsclasses/jsarticle.cls
|
10
|
+
Document Class: jsarticle 2017/10/04 jsclasses (okumura, texjporg)
|
11
|
+
\jsc@mpt=\dimen118
|
12
|
+
\jsc@mmm=\dimen119
|
13
|
+
\jsc@smallskipamount=\skip41
|
14
|
+
LaTeX Info: Redefining \rmfamily on input line 471.
|
15
|
+
LaTeX Info: Redefining \sffamily on input line 474.
|
16
|
+
LaTeX Info: Redefining \ttfamily on input line 477.
|
17
|
+
LaTeX Info: Redefining \textmc on input line 481.
|
18
|
+
LaTeX Info: Redefining \textgt on input line 483.
|
19
|
+
\symmincho=\mathgroup4
|
20
|
+
LaTeX Font Info: Overwriting symbol font `mincho' in version `bold'
|
21
|
+
(Font) JY1/mc/m/n --> JY1/gt/m/n on input line 545.
|
22
|
+
LaTeX Font Info: Font shape `JT1/mc/m/n' will be
|
23
|
+
(Font) scaled to size 9.60999pt on input line 736.
|
24
|
+
LaTeX Font Info: Font shape `JY1/mc/m/n' will be
|
25
|
+
(Font) scaled to size 9.60999pt on input line 736.
|
26
|
+
\fullwidth=\dimen120
|
27
|
+
LaTeX Font Info: Font shape `JT1/mc/m/n' will be
|
28
|
+
(Font) scaled to size 7.68799pt on input line 889.
|
29
|
+
LaTeX Font Info: Font shape `JY1/mc/m/n' will be
|
30
|
+
(Font) scaled to size 7.68799pt on input line 889.
|
31
|
+
\c@part=\count82
|
32
|
+
\c@section=\count83
|
33
|
+
\c@subsection=\count84
|
34
|
+
\c@subsubsection=\count85
|
35
|
+
\c@paragraph=\count86
|
36
|
+
\c@subparagraph=\count87
|
37
|
+
\@abstractbox=\box42
|
38
|
+
\c@figure=\count88
|
39
|
+
\c@table=\count89
|
40
|
+
\abovecaptionskip=\skip42
|
41
|
+
\belowcaptionskip=\skip43
|
42
|
+
\jsc@tocl@width=\dimen121
|
43
|
+
\@lnumwidth=\dimen122
|
44
|
+
\bibindent=\dimen123
|
45
|
+
(/usr/local/texlive/2017/texmf-dist/tex/platex/jsclasses/jslogo.sty
|
46
|
+
Package: jslogo 2017/02/24 okumura, texjporg
|
47
|
+
LaTeX Info: Redefining \TeX on input line 94.
|
48
|
+
LaTeX Info: Redefining \LaTeX on input line 147.
|
49
|
+
LaTeX Info: Redefining \LaTeXe on input line 200.
|
50
|
+
)
|
51
|
+
\heisei=\count90
|
52
|
+
)
|
53
|
+
(/usr/local/texlive/2017/texmf-dist/tex/latex/graphics/graphicx.sty
|
54
|
+
Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR)
|
55
|
+
|
56
|
+
(/usr/local/texlive/2017/texmf-dist/tex/latex/graphics/keyval.sty
|
57
|
+
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
|
58
|
+
\KV@toks@=\toks15
|
59
|
+
)
|
60
|
+
(/usr/local/texlive/2017/texmf-dist/tex/latex/graphics/graphics.sty
|
61
|
+
Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR)
|
62
|
+
|
63
|
+
(/usr/local/texlive/2017/texmf-dist/tex/latex/graphics/trig.sty
|
64
|
+
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
|
65
|
+
)
|
66
|
+
(/usr/local/texlive/2017/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
67
|
+
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
|
68
|
+
)
|
69
|
+
Package graphics Info: Driver file: dvipdfmx.def on input line 99.
|
70
|
+
|
71
|
+
(/usr/local/texlive/2017/texmf-dist/tex/latex/graphics-def/dvipdfmx.def
|
72
|
+
File: dvipdfmx.def 2017/06/24 v5.0g Graphics/color driver for dvipdfmx
|
73
|
+
))
|
74
|
+
\Gin@req@height=\dimen124
|
75
|
+
\Gin@req@width=\dimen125
|
76
|
+
)
|
77
|
+
(/usr/local/texlive/2017/texmf-dist/tex/latex/url/url.sty
|
78
|
+
\Urlmuskip=\muskip10
|
79
|
+
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
|
80
|
+
) (./ruby_learner.aux)
|
81
|
+
\openout1 = `ruby_learner.aux'.
|
82
|
+
|
83
|
+
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 14.
|
84
|
+
LaTeX Font Info: ... okay on input line 14.
|
85
|
+
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 14.
|
86
|
+
LaTeX Font Info: ... okay on input line 14.
|
87
|
+
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 14.
|
88
|
+
LaTeX Font Info: ... okay on input line 14.
|
89
|
+
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 14.
|
90
|
+
LaTeX Font Info: ... okay on input line 14.
|
91
|
+
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 14.
|
92
|
+
LaTeX Font Info: ... okay on input line 14.
|
93
|
+
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 14.
|
94
|
+
LaTeX Font Info: ... okay on input line 14.
|
95
|
+
LaTeX Font Info: Checking defaults for JY1/mc/m/n on input line 14.
|
96
|
+
LaTeX Font Info: ... okay on input line 14.
|
97
|
+
LaTeX Font Info: Checking defaults for JT1/mc/m/n on input line 14.
|
98
|
+
LaTeX Font Info: ... okay on input line 14.
|
99
|
+
LaTeX Font Info: Font shape `JT1/mc/m/n' will be
|
100
|
+
(Font) scaled to size 16.60605pt on input line 19.
|
101
|
+
LaTeX Font Info: Font shape `JY1/mc/m/n' will be
|
102
|
+
(Font) scaled to size 16.60605pt on input line 19.
|
103
|
+
LaTeX Font Info: Font shape `JT1/mc/m/n' will be
|
104
|
+
(Font) scaled to size 11.53198pt on input line 19.
|
105
|
+
LaTeX Font Info: Font shape `JY1/mc/m/n' will be
|
106
|
+
(Font) scaled to size 11.53198pt on input line 19.
|
107
|
+
LaTeX Font Info: External font `cmex10' loaded for size
|
108
|
+
(Font) <12> on input line 19.
|
109
|
+
LaTeX Font Info: External font `cmex10' loaded for size
|
110
|
+
(Font) <8> on input line 19.
|
111
|
+
LaTeX Font Info: External font `cmex10' loaded for size
|
112
|
+
(Font) <6> on input line 19.
|
113
|
+
LaTeX Font Info: Font shape `JY1/mc/m/n' will be
|
114
|
+
(Font) scaled to size 5.76599pt on input line 19.
|
115
|
+
LaTeX Font Info: Font shape `JT1/gt/m/n' will be
|
116
|
+
(Font) scaled to size 11.53198pt on input line 21.
|
117
|
+
LaTeX Font Info: Font shape `JY1/gt/m/n' will be
|
118
|
+
(Font) scaled to size 11.53198pt on input line 21.
|
119
|
+
|
120
|
+
Underfull \vbox (badness 10000) has occurred while \output is active []
|
121
|
+
|
122
|
+
File: ./rspec_rubocop.png Graphic file (type bmp)
|
123
|
+
<./rspec_rubocop.png>
|
124
|
+
LaTeX Font Info: Font shape `JT1/mc/m/n' will be
|
125
|
+
(Font) scaled to size 8.64899pt on input line 55.
|
126
|
+
LaTeX Font Info: Font shape `JY1/mc/m/n' will be
|
127
|
+
(Font) scaled to size 8.64899pt on input line 55.
|
128
|
+
LaTeX Font Info: Font shape `JT1/gt/m/n' will be
|
129
|
+
(Font) scaled to size 8.64899pt on input line 70.
|
130
|
+
LaTeX Font Info: Font shape `JY1/gt/m/n' will be
|
131
|
+
(Font) scaled to size 8.64899pt on input line 70.
|
132
|
+
LaTeX Font Info: External font `cmex10' loaded for size
|
133
|
+
(Font) <9> on input line 70.
|
134
|
+
LaTeX Font Info: External font `cmex10' loaded for size
|
135
|
+
(Font) <5> on input line 70.
|
136
|
+
LaTeX Font Info: Font shape `JY1/mc/m/n' will be
|
137
|
+
(Font) scaled to size 4.805pt on input line 70.
|
138
|
+
[1
|
139
|
+
|
140
|
+
|
141
|
+
]
|
142
|
+
(./ruby_learner.aux) )
|
143
|
+
Here is how much of TeX's memory you used:
|
144
|
+
931 strings out of 493640
|
145
|
+
11116 string characters out of 6148698
|
146
|
+
75086 words of memory out of 5000000
|
147
|
+
4568 multiletter control sequences out of 15000+600000
|
148
|
+
13916 words of font info for 61 fonts, out of 8000000 for 9000
|
149
|
+
934 hyphenation exceptions out of 8191
|
150
|
+
25i,8n,21p,444b,378s stack positions out of 5000i,500n,10000p,200000b,80000s
|
151
|
+
|
152
|
+
Output written on ruby_learner.dvi (1 page, 8372 bytes).
|