File tree Expand file tree Collapse file tree 5 files changed +19
-8
lines changed Expand file tree Collapse file tree 5 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 44Gemfile.lock
55* .gem
66* .idea
7+ .jekyll-cache
Original file line number Diff line number Diff line change 11before_install :
2- - gem install bundler -v 2.0.1
2+ - gem install bundler -v 2.1.0
33script :
44- bundle install
55deploy :
Original file line number Diff line number Diff line change @@ -14,8 +14,16 @@ This theme for [Jekyll](https://jekyllrb.com/) has been inspired by [dash-ui](ht
1414
1515Add this line to your Jekyll site's ` Gemfile ` :
1616
17+ For ** Jekyll 3** :
1718``` ruby
18- gem " jekyll-dash"
19+ gem ' jekyll-dash' , ' ~> 1.0.0'
20+ ```
21+
22+ > Keep in mind: Github pages generation only supports Jekyll 3.8 right now.
23+
24+ For ** Jekyll 4** :
25+ ``` ruby
26+ gem ' jekyll-dash' , ' ~> 2.0.0'
1927```
2028
2129And add this line to your Jekyll site's ` _config.yml ` :
@@ -30,7 +38,7 @@ And then execute:
3038
3139Or install it yourself as:
3240
33- $ gem install jekyll-dash
41+ $ gem install jekyll-dash -v version
3442
3543## Configuration
3644
Original file line number Diff line number Diff line change 88 -webkit-font-smoothing : antialiased ;
99}
1010
11+ $theme-map : null;
12+
1113@mixin themed () {
1214 @each $theme , $map in $themes {
1315 .theme--#{$theme } & {
Original file line number Diff line number Diff line change 22
33Gem ::Specification . new do |spec |
44 spec . name = "jekyll-dash"
5- spec . version = "1.3.4 "
5+ spec . version = "2.0.0 "
66 spec . authors = [ "Miguel Gonzalez Sanchez" ]
77 spec . email = [ "[email protected] " ] 88
@@ -12,11 +12,11 @@ Gem::Specification.new do |spec|
1212
1313 spec . files = `git ls-files -z` . split ( "\x0 " ) . select { |f | f . match ( %r!^(assets|_layouts|_includes|_plugins|_sass|LICENSE|README)!i ) }
1414
15- spec . add_runtime_dependency "jekyll" , "~> 3.5 "
16- spec . add_runtime_dependency "jekyll-feed" , "~> 0.9 "
15+ spec . add_runtime_dependency "jekyll" , "~> 4.0 "
16+ spec . add_runtime_dependency "jekyll-feed" , "~> 0.14 "
1717 spec . add_runtime_dependency "jekyll-seo-tag" , "~> 2.1"
1818 spec . add_runtime_dependency "jekyll-paginate"
1919
20- spec . add_development_dependency "bundler" , "~> 2.0.1 "
21- spec . add_development_dependency "rake" , "~> 12 .0"
20+ spec . add_development_dependency "bundler" , "~> 2.1.0 "
21+ spec . add_development_dependency "rake" , "~> 13 .0"
2222end
You can’t perform that action at this time.
0 commit comments