From 113fc808598aec7ce3d41eea1b6719c06538bc59 Mon Sep 17 00:00:00 2001 From: HASUMI Hitoshi Date: Thu, 11 Apr 2024 17:25:35 +0900 Subject: [PATCH] update --- Gemfile.lock | 6 +++--- _data/sidebars/picoruby_sidebar.yml | 14 +++++++++++--- pages/rbs_doc/Base16.md | 9 +++++++++ pages/rbs_doc/Base64.md | 9 +++++++++ pages/rbs_doc/Prism.md | 15 +++++++++++++++ pages/rbs_doc/Prism_Location.md | 15 +++++++++++++++ pages/rbs_doc/Prism_ParseError.md | 9 +++++++++ pages/rbs_doc/Prism_ParseResult.md | 9 +++++++++ 8 files changed, 80 insertions(+), 6 deletions(-) create mode 100644 pages/rbs_doc/Base16.md create mode 100644 pages/rbs_doc/Base64.md create mode 100644 pages/rbs_doc/Prism.md create mode 100644 pages/rbs_doc/Prism_Location.md create mode 100644 pages/rbs_doc/Prism_ParseError.md create mode 100644 pages/rbs_doc/Prism_ParseResult.md diff --git a/Gemfile.lock b/Gemfile.lock index e89cbf4..ae4d1af 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -222,6 +222,7 @@ GEM rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) mercenary (0.3.6) + mini_portile2 (2.8.5) minima (2.5.1) jekyll (>= 3.5, < 5.0) jekyll-feed (~> 0.9) @@ -230,9 +231,8 @@ GEM mutex_m (0.2.0) net-http (0.4.1) uri - nokogiri (1.16.0-arm64-darwin) - racc (~> 1.4) - nokogiri (1.16.0-x86_64-linux) + nokogiri (1.16.4) + mini_portile2 (~> 2.8.2) racc (~> 1.4) octokit (4.25.1) faraday (>= 1, < 3) diff --git a/_data/sidebars/picoruby_sidebar.yml b/_data/sidebars/picoruby_sidebar.yml index 9ea7416..2d04e99 100644 --- a/_data/sidebars/picoruby_sidebar.yml +++ b/_data/sidebars/picoruby_sidebar.yml @@ -4,15 +4,15 @@ entries: product: PicoRuby version: master folders: - - title: + - title: output: pdf type: frontmatter folderitems: - - title: + - title: url: "/titlepage.html" output: pdf type: frontmatter - - title: + - title: url: "/tocpage.html" output: pdf type: frontmatter @@ -254,6 +254,14 @@ entries: url: "/BLE_Utils.html" output: web pdf type: homepage + - title: Base16 + url: "/Base16.html" + output: web pdf + type: homepage + - title: Base64 + url: "/Base64.html" + output: web pdf + type: homepage - title: Dir url: "/Dir.html" output: web pdf diff --git a/pages/rbs_doc/Base16.md b/pages/rbs_doc/Base16.md new file mode 100644 index 0000000..e4a2411 --- /dev/null +++ b/pages/rbs_doc/Base16.md @@ -0,0 +1,9 @@ +--- +title: Base16 +keywords: Base16 +tags: [class] +summary: Base16 class of PicoRuby +sidebar: picoruby_sidebar +permalink: Base16.html +folder: rbs_doc +--- diff --git a/pages/rbs_doc/Base64.md b/pages/rbs_doc/Base64.md new file mode 100644 index 0000000..538ffd9 --- /dev/null +++ b/pages/rbs_doc/Base64.md @@ -0,0 +1,9 @@ +--- +title: Base64 +keywords: Base64 +tags: [class] +summary: Base64 class of PicoRuby +sidebar: picoruby_sidebar +permalink: Base64.html +folder: rbs_doc +--- diff --git a/pages/rbs_doc/Prism.md b/pages/rbs_doc/Prism.md new file mode 100644 index 0000000..f27dc78 --- /dev/null +++ b/pages/rbs_doc/Prism.md @@ -0,0 +1,15 @@ +--- +title: Prism +keywords: Prism +tags: [class] +summary: Prism class of PicoRuby +sidebar: picoruby_sidebar +permalink: Prism.html +folder: rbs_doc +--- +## Instance methods +### parse + +```ruby +instance.parse(String script) -> String +``` diff --git a/pages/rbs_doc/Prism_Location.md b/pages/rbs_doc/Prism_Location.md new file mode 100644 index 0000000..8575307 --- /dev/null +++ b/pages/rbs_doc/Prism_Location.md @@ -0,0 +1,15 @@ +--- +title: Prism::Location +keywords: Prism::Location +tags: [class] +summary: Prism::Location class of PicoRuby +sidebar: picoruby_sidebar +permalink: Prism_Location.html +folder: rbs_doc +--- +## Instance methods +### inspect + +```ruby +instance.inspect() -> String +``` diff --git a/pages/rbs_doc/Prism_ParseError.md b/pages/rbs_doc/Prism_ParseError.md new file mode 100644 index 0000000..0a72c42 --- /dev/null +++ b/pages/rbs_doc/Prism_ParseError.md @@ -0,0 +1,9 @@ +--- +title: Prism::ParseError +keywords: Prism::ParseError +tags: [class] +summary: Prism::ParseError class of PicoRuby +sidebar: picoruby_sidebar +permalink: Prism_ParseError.html +folder: rbs_doc +--- diff --git a/pages/rbs_doc/Prism_ParseResult.md b/pages/rbs_doc/Prism_ParseResult.md new file mode 100644 index 0000000..8833b84 --- /dev/null +++ b/pages/rbs_doc/Prism_ParseResult.md @@ -0,0 +1,9 @@ +--- +title: Prism::ParseResult +keywords: Prism::ParseResult +tags: [class] +summary: Prism::ParseResult class of PicoRuby +sidebar: picoruby_sidebar +permalink: Prism_ParseResult.html +folder: rbs_doc +---