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:

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: > > ``` >

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

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
page, so any new link added changes hundreds of files? > > -- > *From:* holden.ka...@gmail.com <holden.ka...@gmail.com> on behalf of > Holden Karau <hol...@pigscanfly.ca> > *Sent:* Thursday, March 1, 2018 6:36:43 PM > *To:* dev >

Re: Using bundler for Jekyll?

2018-03-01 Thread Felix Cheung
ch 1, 2018 6:36:43 PM To: dev Subject: Using bundler for Jekyll? One of the things which comes up when folks update the Spark website is that we often get lots of unnecessarily changed files. I _think_ some of this might come from different jekyll versions on different machines, would folks

Using bundler for Jekyll?

2018-03-01 Thread Holden Karau
One of the things which comes up when folks update the Spark website is that we often get lots of unnecessarily changed files. I _think_ some of this might come from different jekyll versions on different machines, would folks be OK if we added a requirements that folks use bundler so we can have