Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "standard"
gem "tty-markdown"
gem "timeout"
65 changes: 65 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
json (2.6.3)
kramdown (2.4.0)
rexml
language_server-protocol (3.17.0.3)
parallel (1.22.1)
parser (3.2.1.0)
ast (~> 2.4.1)
pastel (0.8.0)
tty-color (~> 0.5)
rainbow (3.1.1)
regexp_parser (2.7.0)
rexml (3.2.5)
rouge (3.30.0)
rubocop (1.44.1)
json (~> 2.3)
parallel (~> 1.10)
parser (>= 3.2.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.24.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.26.0)
parser (>= 3.2.1.0)
rubocop-performance (1.15.2)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
ruby-progressbar (1.11.0)
standard (1.24.3)
language_server-protocol (~> 3.17.0.2)
rubocop (= 1.44.1)
rubocop-performance (= 1.15.2)
strings (0.2.1)
strings-ansi (~> 0.2)
unicode-display_width (>= 1.5, < 3.0)
unicode_utils (~> 1.4)
strings-ansi (0.2.0)
timeout (0.3.2)
tty-color (0.6.0)
tty-markdown (0.7.1)
kramdown (>= 1.16.2, < 3.0)
pastel (~> 0.8)
rouge (~> 3.14)
strings (~> 0.2.0)
tty-color (~> 0.5)
tty-screen (~> 0.8)
tty-screen (0.8.1)
unicode-display_width (2.4.2)
unicode_utils (1.4.0)

PLATFORMS
x86_64-linux

DEPENDENCIES
standard
timeout
tty-markdown

BUNDLED WITH
2.3.26
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,14 @@ Sample questions for [Ruby Association Certified Ruby Programmer Examination ver

* [Sample Questions for Silver](silver.md) ([Japanese](silver_ja.md))
* [Sample Questions for Gold](gold.md) ([Japanese](gold_ja.md))

# Run sample exam

* Silver `ruby test.rb` or `ruby test.rb silver en`
* Gold `ruby test.rb gold en`

Japanese

* Silver `ruby test.rb silver ja`
* Gold `ruby test.rb gold ja`

Loading