-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* very basic theme toggle working * only show theme toggle if available. see https://caniuse.com/?search=color-scheme currently chrome and firefox beta should be available for firefox stable in 11/01/2022 https://wiki.mozilla.org/Release_Management/Release_owners * override colors from jenkyll-dark-midnight in light theme * add font-awesome, basic toggle icon working * switch to adjust icon rather than toggling from sun/moon * basic theme toggle spec * finish theme tests * rubocop offenses * remove .rspec-local.bak * update rubocop to match gist https://gist.github.com/ConorSheehan1/ed75920ca8722a09b527b37f006cf8e3
- Loading branch information
1 parent
c3fe9f3
commit c4081c1
Showing
1,792 changed files
with
23,952 additions
and
211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ _site | |
.sass-cache | ||
.byebug_history | ||
.rspec-local | ||
TODO.md | ||
TODO.md | ||
*.bak |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
# frozen_string_literal: true | ||
|
||
ruby '>= 2.7.0' | ||
ruby ">= 2.7.0" | ||
|
||
source 'https://rubygems.org' | ||
source "https://rubygems.org" | ||
|
||
# https://pages.github.com/versions/ | ||
group :development, :test do | ||
gem 'byebug', '~> 10.0' | ||
gem 'ffi', '~> 1.12.0' # 1.13.0 has issues https://github.com/ffi/ffi/issues/773 | ||
gem 'jekyll', '~> 3.9.0' | ||
gem 'kramdown', '>= 2.3.1' # sec | ||
gem 'rubocop', '~> 0.90.0' | ||
gem 'webdrivers', '~> 4.4' | ||
gem "byebug", "~> 10.0" | ||
gem "ffi", "~> 1.12.0" # 1.13.0 has issues https://github.com/ffi/ffi/issues/773 | ||
gem "jekyll", "~> 3.9.0" | ||
gem "kramdown", ">= 2.3.1" # sec | ||
gem "rubocop", "~> 0.90.0" | ||
gem "webdrivers", "~> 4.4" | ||
end | ||
|
||
group :test do | ||
gem 'capybara', '~> 3.32.0' | ||
gem 'faraday', '~> 1.0.1' | ||
gem 'rspec', '~> 3.7.0' | ||
gem 'selenium-webdriver', '~> 3.8' | ||
gem "capybara", "~> 3.32.0" | ||
gem "faraday", "~> 1.0.1" | ||
gem "rspec", "~> 3.7.0" | ||
gem "selenium-webdriver", "~> 3.8" | ||
end | ||
|
||
group :jekyll_plugins do | ||
gem 'github-pages' | ||
gem 'jekyll-paginate', '~> 1.1' | ||
gem "github-pages" | ||
gem "jekyll-paginate", "~> 1.1" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.