Re: Using bundler for Jekyll?

2021-02-12 Thread attilapiros
Managed to improve the site building a bit more: with a Gemfile we can pin Jekyll to an exact version. For this we just have to call Jekyll via `bundle exec jekyll`. The PR [1] is opened. [1] https://github.com/apache/spark-website/pull/303 -- Sent from: http://apache-spark-developers-list.10

Re: Using bundler for Jekyll?

2021-02-12 Thread attilapiros
Sure I will do that, too. -- Sent from: http://apache-spark-developers-list.1001551.n3.nabble.com/ - To unsubscribe e-mail: dev-unsubscr...@spark.apache.org

Re: Using bundler for Jekyll?

2021-02-12 Thread Sean Owen
Seems fine to me. How about just regenerating the whole site once with the latest version and requiring that? On Fri, Feb 12, 2021 at 7:09 AM attilapiros wrote: > I run into the same problem today and tried to find the version where the > diff is minimal, so I wrote a script: > > ``` > #!/bin/zs

Re: Using bundler for Jekyll?

2021-02-12 Thread attilapiros
I run into the same problem today and tried to find the version where the diff is minimal, so I wrote a script: ``` #!/bin/zsh versions=('3.7.3' '3.7.2' '3.7.0' '3.6.3' '3.6.2' '3.6.1' '3.6.0' '3.5.2' '3.5.1' '3.5.0' '3.4.5' '3.4.4' '3.4.3' '3.4.2' '3.4.1' '3.4.0') for i in $versions; do gem u

Re: Using bundler for Jekyll?

2018-03-02 Thread Sean Owen
If a header changes or news changes -- anything that causes a change on the common parts of pages -- yeah you'll get tons of modified files. No way around that as far as I know. However I've certainly observed differences that seem to be due to differing jekyll versions. To solve that I've always

Re: Using bundler for Jekyll?

2018-03-01 Thread Holden Karau
Ah yeah bundler wouldn't fix that issue :( Do we happen to have any Jekyll enthusiast lurking on the list who could help out? On Thu, Mar 1, 2018 at 6:46 PM, Felix Cheung wrote: > Also part of the problem is that the latest news panel is static on each > page, so any new link added changes hundr

Re: Using bundler for Jekyll?

2018-03-01 Thread Felix Cheung
Also part of the problem is that the latest news panel is static on each page, so any new link added changes hundreds of files? From: holden.ka...@gmail.com on behalf of Holden Karau Sent: Thursday, March 1, 2018 6:36:43 PM To: dev Subject: Using bundler for Je