Skip to content

Commit

Permalink
tweaking the gemspec #13 #17 #12
Browse files Browse the repository at this point in the history
  • Loading branch information
MattReimer committed May 27, 2020
1 parent a1a8e20 commit e47dae7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions assets/js/nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ var NAVPages = [
{% endfor %}
];
var SiteSettings = {{ site.settings | jsonify }};

var TopMenu = {{ site.topmenu | jsonify }};

var SITE = {{ site | jsonify }};

var APPREDIRECTS = {
{% for redir in site.AppRedirects %}
{{redir.key}}: "{{redir.url}}",
Expand Down
10 changes: 5 additions & 5 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ settings:
#
# The url you have to call is: http://siteurl.com/baseurl/?APPKEY=KEY1
# ---------------------------------------------------------------
AppRedirects:
- key: KEY1
url: ThingsA
- key: KEY2
url: ThingsB/subpageB.html
# AppRedirects:
# - key: KEY1
# url: ThingsA
# - key: KEY2
# url: ThingsB/subpageB.html

# Here is how we retrieve the remote theme. Changes to this remote theme will show up after you
# push the repo with your /docs folder
Expand Down
6 changes: 3 additions & 3 deletions riverscapes-jekyll-theme.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

Gem::Specification.new do |spec|
spec.name = "riverscapes-jekyll-theme"
spec.version = "0.1.0"
spec.version = "0.2.0"
spec.authors = ["Matt Reimer"]
spec.email = ["[email protected]"]

spec.summary = "Write a short summary, because Rubygems requires one."
spec.homepage = "http://riverscapes.xyz"
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_layouts|_includes|_sass|LICENSE|README)!i) }
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(yarn\.lock|test|spec|features|docs|script|node_modules|\.[a-z]+)/!) }

spec.add_runtime_dependency "jekyll", ">= 4.0"
spec.add_runtime_dependency "jekyll", ">= 4.1"

spec.add_development_dependency "bundler"
end

0 comments on commit e47dae7

Please sign in to comment.