File tree Expand file tree Collapse file tree 3 files changed +36
-5
lines changed
Expand file tree Collapse file tree 3 files changed +36
-5
lines changed Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- just-the -docs (0.10 .1 )
4+ wp-a11y -docs (0.1 )
55 jekyll (>= 3.8.5 )
66 jekyll-include-cache
77 jekyll-seo-tag (>= 2.0 )
@@ -172,7 +172,7 @@ DEPENDENCIES
172172 jekyll-paginate
173173 jekyll-sass-converter (~> 3.1.0 )
174174 jekyll-sitemap
175- just-the -docs !
175+ wp-a11y -docs !
176176
177177BUNDLED WITH
178178 2.5.9
Original file line number Diff line number Diff line change 1414# You can create any custom variable you would like, and they will be accessible
1515# in the templates via {{ site.myvariable }}.
1616description : Learn accessibility for WordPress.
17- repository : rianrietveld /wp-a11y-docs # for github-metadata
17+ repository : wpaccessibility /wp-a11y-docs # for github-metadata
1818
1919# Local env
20+
2021# title: Local WP Accessibility Knowledge Base
2122# baseurl: "" # the sub path of your site, e.g. /blog
2223# url: "http://127.0.0.1:4000/" # the base hostname & protocol for your site, e.g. http://example.com
24+ # or just run bundle exec jekyll serve --baseurl="" in the terminal
2325
2426# prod env
25- title : Draft WP Accessibility Knowledge Base
27+ title : WP Accessibility Knowledge Base
2628baseurl : " /wp-a11y-docs" # the sub path of your site, e.g. /blog
27- url : " https://rianrietveld .github.io/" # the base hostname & protocol for your site, e.g. http://example.com
29+ url : " https://wpaccessibility .github.io/" # the base hostname & protocol for your site, e.g. http://example.com
2830
2931permalink : pretty
3032
Original file line number Diff line number Diff line change 1+ # coding: utf-8
2+
3+ Gem ::Specification . new do |spec |
4+ spec . name = "wp-a11y-docs"
5+ spec . version = "0.1"
6+ spec . authors = [ "Rian Rietveld" , "Patrick Marsceill" , "Matthew Wang" ]
7+ spec . email = [ "mail@rianrietveld.nl" , "patrick.marsceill@gmail.com" , "matt@matthewwang.me" ]
8+ spec . name = "wp-a11y-docs"
9+ spec . version = "0.1"
10+
11+ spec . summary = %q{An accessible theme for documentation, based on Just The Docs.}
12+ spec . homepage = "https://github.com/wpaccessibility/wp-a11y-docs"
13+ spec . license = "MIT"
14+ spec . metadata = {
15+ "bug_tracker_uri" => "https://github.com/wpaccessibility/wp-a11y-docs/issues" ,
16+ "changelog_uri" => "https://github.com/wpaccessibility/wp-a11y-docs/blob/main/CHANGELOG.md" ,
17+ "documentation_uri" => "https://wpaccessibility.org/" ,
18+ "source_code_uri" => "https://github.com/wpaccessibility/wp-a11y-docs" ,
19+ }
20+
21+ spec . files = `git ls-files -z ':!:*.jpg' ':!:*.png'` . split ( "\x0 " ) . select { |f | f . match ( %r{^(assets|bin|_layouts|_includes|lib|Rakefile|_sass|LICENSE|README|CHANGELOG|favicon)}i ) }
22+ spec . executables << 'wp-a11y-docs'
23+
24+ spec . add_development_dependency "bundler" , ">= 2.3.5"
25+ spec . add_runtime_dependency "jekyll" , ">= 3.8.5"
26+ spec . add_runtime_dependency "jekyll-seo-tag" , ">= 2.0"
27+ spec . add_runtime_dependency "jekyll-include-cache"
28+ spec . add_runtime_dependency "rake" , ">= 12.3.1"
29+ end
You can’t perform that action at this time.
0 commit comments