Skip to content

Commit b22660e

Browse files
authored
Merge pull request #8 from BIRDSOpenSource/main
pull updates
2 parents 3b143ab + 1530dae commit b22660e

File tree

7 files changed

+57
-30
lines changed

7 files changed

+57
-30
lines changed

Gemfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@ source 'https://rubygems.org'
33
gem "jekyll", "~> 4.3.2" # installed by `gem jekyll`
44
gem "just-the-docs", "0.5.4" # pinned to the current release
55
# gem "just-the-docs" # always download the latest release
6+
gem "jekyll-github-metadata", ">= 2.15"
7+
gem "faraday-retry"
68

79
group :jekyll_plugins do
810
gem "jekyll-polyglot"
11+
gem "jekyll-seo-tag"
12+
gem "jekyll-include-cache"
13+
gem "jekyll-sitemap"
914
gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2
1015
gem "base64", "~> 0.2.0"
1116
end

Gemfile.lock

Lines changed: 35 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,28 @@ GEM
1111
eventmachine (>= 0.12.9)
1212
http_parser.rb (~> 0)
1313
eventmachine (1.2.7)
14-
ffi (1.17.1)
14+
faraday (2.12.2)
15+
faraday-net_http (>= 2.0, < 3.5)
16+
json
17+
logger
18+
faraday-net_http (3.4.0)
19+
net-http (>= 0.5.0)
20+
faraday-retry (2.2.1)
21+
faraday (~> 2.0)
1522
ffi (1.17.1-arm64-darwin)
16-
ffi (1.17.1-x86-linux-gnu)
17-
ffi (1.17.1-x86-linux-musl)
1823
ffi (1.17.1-x86_64-darwin)
24+
ffi (1.17.1-x86_64-linux-gnu)
1925
forwardable-extended (2.6.0)
2026
google-protobuf (4.29.3)
2127
bigdecimal
2228
rake (>= 13)
2329
google-protobuf (4.29.3-arm64-darwin)
2430
bigdecimal
2531
rake (>= 13)
26-
google-protobuf (4.29.3-x86-linux)
32+
google-protobuf (4.29.3-x86_64-darwin)
2733
bigdecimal
2834
rake (>= 13)
29-
google-protobuf (4.29.3-x86_64-darwin)
35+
google-protobuf (4.29.3-x86_64-linux)
3036
bigdecimal
3137
rake (>= 13)
3238
http_parser.rb (0.8.0)
@@ -48,14 +54,22 @@ GEM
4854
safe_yaml (~> 1.0)
4955
terminal-table (>= 1.8, < 4.0)
5056
webrick (~> 1.7)
57+
jekyll-github-metadata (2.16.1)
58+
jekyll (>= 3.4, < 5.0)
59+
octokit (>= 4, < 7, != 4.4.0)
60+
jekyll-include-cache (0.2.1)
61+
jekyll (>= 3.7, < 5.0)
5162
jekyll-polyglot (1.8.1)
5263
jekyll (>= 4.0, >= 3.0)
5364
jekyll-sass-converter (3.0.0)
5465
sass-embedded (~> 1.54)
5566
jekyll-seo-tag (2.8.0)
5667
jekyll (>= 3.8, < 5.0)
68+
jekyll-sitemap (1.4.0)
69+
jekyll (>= 3.7, < 5.0)
5770
jekyll-watch (2.2.1)
5871
listen (~> 3.0)
72+
json (2.9.1)
5973
just-the-docs (0.5.4)
6074
jekyll (>= 3.8.5)
6175
jekyll-seo-tag (>= 2.0)
@@ -68,7 +82,13 @@ GEM
6882
listen (3.9.0)
6983
rb-fsevent (~> 0.10, >= 0.10.3)
7084
rb-inotify (~> 0.9, >= 0.9.10)
85+
logger (1.6.5)
7186
mercenary (0.4.0)
87+
net-http (0.6.0)
88+
uri
89+
octokit (6.1.1)
90+
faraday (>= 1, < 3)
91+
sawyer (~> 0.9)
7292
pathutil (0.16.2)
7393
forwardable-extended (~> 2.6)
7494
public_suffix (6.0.1)
@@ -82,33 +102,30 @@ GEM
82102
sass-embedded (1.83.1)
83103
google-protobuf (~> 4.29)
84104
rake (>= 13)
85-
sass-embedded (1.83.1-aarch64-mingw-ucrt)
86-
google-protobuf (~> 4.29)
87-
sass-embedded (1.83.1-arm64-darwin)
88-
google-protobuf (~> 4.29)
89-
sass-embedded (1.83.1-x86_64-cygwin)
90-
google-protobuf (~> 4.29)
91-
sass-embedded (1.83.1-x86_64-darwin)
92-
google-protobuf (~> 4.29)
105+
sawyer (0.9.2)
106+
addressable (>= 2.3.5)
107+
faraday (>= 0.17.3, < 3)
93108
terminal-table (3.0.2)
94109
unicode-display_width (>= 1.1.1, < 3)
95110
unicode-display_width (2.6.0)
111+
uri (1.0.2)
96112
webrick (1.9.1)
97113

98114
PLATFORMS
99115
aarch64-mingw-ucrt
100116
arm64-darwin
101-
ruby
102-
x86-linux
103-
x86-linux-gnu
104-
x86-linux-musl
105-
x86_64-cygwin
106117
x86_64-darwin
118+
x86_64-linux
107119

108120
DEPENDENCIES
109121
base64 (~> 0.2.0)
122+
faraday-retry
110123
jekyll (~> 4.3.2)
124+
jekyll-github-metadata (>= 2.15)
125+
jekyll-include-cache
111126
jekyll-polyglot
127+
jekyll-seo-tag
128+
jekyll-sitemap
112129
just-the-docs (= 0.5.4)
113130
webrick
114131

_config.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ theme: just-the-docs
1111
# urls
1212

1313
repository: BIRDSOpenSource/BIRDSOpenSource.github.io/ # for github-metadata
14-
url: https://birdsopensource.github.io/
14+
baseurl: "" # the subpath of your site, e.g. /blog
15+
url: https://birdsopensource.github.io
1516
logo: "/assets/images/birds-logo-light.png" # Set a path/url to a logo that will be displayed instead of the title
1617
favicon_ico: "/assets/images/favicon.ico" # Set a path/url to a favicon that will be displayed by the browser
1718

@@ -162,4 +163,11 @@ language_labels:
162163
en: English
163164
jp: 日本語
164165
sass:
165-
sourcemap: never
166+
sourcemap: never
167+
168+
169+
plugins:
170+
- jekyll-seo-tag
171+
- jekyll-github-metadata
172+
- jekyll-include-cache
173+
- jekyll-sitemap

_sass/custom/custom.scss

Lines changed: 0 additions & 8 deletions
This file was deleted.

_site/index.html

Lines changed: 2 additions & 1 deletion
Large diffs are not rendered by default.

overview/index.en.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@ lang: en
1818
{: .caution }
1919
We are currently in the process of updating much of our training content referencing documents from the BIRDS-X satellite.
2020

21+
22+
<center>
23+
<iframe width="560" height="315" src="https://www.youtube.com/embed/eHbP0YvnUiI?si=lDnSzHd7lpJlMOno" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
24+
</center>

overview/index.jp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: はじめに
3-
layout: ホーム
3+
layout: home
44
permalink: "/"
55
lang: jp
66
---

0 commit comments

Comments
 (0)