Skip to content

Commit dda9cbe

Browse files
author
Trevor Keller
committed
Update Gemfile and fix some typos
1 parent 072536a commit dda9cbe

File tree

6 files changed

+32
-10
lines changed

6 files changed

+32
-10
lines changed

.codespell-ignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Fram
2+
dropse
3+
figurestyle
4+
hist
5+
namd
6+
rouge

.github/workflows/test_and_build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- uses: actions/checkout@v2
3030
- uses: ruby/setup-ruby@v1
3131
with:
32-
ruby-version: '2.7'
32+
ruby-version: '3.0.4'
3333
- name: Install basic requirements
3434
run: |
3535
# Need this library for nokogiri
@@ -56,17 +56,19 @@ jobs:
5656
strategy:
5757
matrix:
5858
HPC_JEKYLL_CONFIG:
59+
- Birmingham_Baskerville_slurm
5960
- ComputeCanada_Graham_slurm
6061
- EPCC_Cirrus_pbs
62+
- HPCC_MagicCastle_slurm
63+
- Magic_Castle_EESSI_slurm
6164
- NIST_CTCMS_slurm
6265
- Norway_SIGMA2_SAGA_slurm
6366
- UCL_Myriad_sge
64-
- Magic_Castle_EESSI_slurm
6567
steps:
6668
- uses: actions/checkout@v2
6769
- uses: ruby/setup-ruby@v1
6870
with:
69-
ruby-version: '2.7'
71+
ruby-version: '3.0.4'
7072
- name: Install basic requirements
7173
run: |
7274
# Need this library for nokogiri

Gemfile

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
source "https://rubygems.org"
2-
gem "github-pages", group: :jekyll_plugins
1+
# frozen_string_literal: true
2+
3+
source 'https://rubygems.org'
4+
5+
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6+
7+
# Synchronize with https://pages.github.com/versions
8+
ruby '3.0.4'
9+
10+
gem 'github-pages', group: :jekyll_plugins
11+
12+
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.0.0')
13+
gem 'webrick', '>= 1.6.1'
14+
end
15+
316
gem "kramdown-parser-gfm"
17+
418
gem "mdl"

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export SHELL = /bin/bash
66

77
# Settings
88
MAKEFILES=Makefile $(wildcard *.mk)
9-
JEKYLL=bundle config --local set path .vendor/bundle && bundle install && bundle update && bundle exec jekyll
9+
JEKYLL=bundle config --local set path .bundle && bundle install && bundle update && bundle exec jekyll
1010
HPC_JEKYLL_CONFIG?=
1111
PARSER=bin/markdown_ast.rb
1212
DST=_site
@@ -154,7 +154,7 @@ lesson-fixme :
154154

155155
## spellcheck
156156
spellcheck:
157-
codespell --skip="assets,*.svg,.vendor" --quiet-level=2 -L "dropse,figurestyle,hist,namd,rouge"
157+
codespell --skip="assets,*.svg,.vendor" --quiet-level=2 -I .codespell-ignore
158158

159159
##
160160
## IV. Auxililary (plumbing) commands

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ episode_order:
9494
# "swc": Software Carpentry
9595
# "dc": Data Carpentry
9696
# "lc": Library Carpentry
97-
# "cp": Carpentries (e.g., instructor traning)
97+
# "cp": Carpentries (e.g., instructor training)
9898
carpentry: "incubator"
9999

100100
# Overall title for pages.

_extras/discuss.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ individual to individual!
8282
>
8383
> - Vary the number of threads used per process
8484
> - Reduce the number of cores used per node
85-
> - Allow the calculation to use Symmetric Mutithreading (SMT) if enabled
85+
> - Allow the calculation to use Symmetric Multithreading (SMT) if enabled
8686
>
8787
> Please ask for more information on these options from a helper!
8888
{: .challenge}
@@ -95,7 +95,7 @@ https://blast.ncbi.nlm.nih.gov/Blast.cgi?CMD=Web&PAGE_TYPE=BlastDocs&DOC_TYPE=Do
9595
> compares nucleotide or protein sequences to sequence databases and calculates
9696
> the statistical significance.
9797
>
98-
> In this exercise, you should use what you have learnt so far to set up a way
98+
> In this exercise, you should use what you have learned so far to set up a way
9999
> to run multiple serial BLAST+ analyses in parallel. There are many different
100100
> ways to do this that can be used on their own or in combination. Some ideas
101101
> include:

0 commit comments

Comments
 (0)