This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-site.git
The following commit(s) were added to refs/heads/master by this push:
new 8424aea ARROW-6842: [Website] Pin Sprockets to 4.0.0.beta8
8424aea is described below
commit 8424aea5a3af3c2baee48e26b06f643091c570fd
Author: Sutou Kouhei <[email protected]>
AuthorDate: Thu Oct 10 09:35:10 2019 +0900
ARROW-6842: [Website] Pin Sprockets to 4.0.0.beta8
We can remove this when
https://github.com/envygeeks/jekyll-assets/pull/620 is merged and a
new jekyll-assets version is released.
Closes #32 from kou/pin-sprockets and squashes the following commits:
89c65097 <Sutou Kouhei> ARROW-6842: Pin Sprockets to 4.0.0.beta8
Authored-by: Sutou Kouhei <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
Gemfile | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/Gemfile b/Gemfile
index e20e751..6a2b720 100644
--- a/Gemfile
+++ b/Gemfile
@@ -19,9 +19,12 @@ ruby RUBY_VERSION
gem "jekyll", "3.8.4"
gem 'bootstrap', '~> 4.1.3'
group :jekyll_plugins do
- gem "jekyll-assets"
- gem "jekyll-feed", "~> 0.6"
- gem "jekyll-jupyter-notebook"
- gem "jekyll-seo-tag"
+ gem "jekyll-assets"
+ # TODO: Remove this when https://github.com/envygeeks/jekyll-assets/pull/620
+ # is merged and a new jekyll-assets version is released.
+ gem "sprockets", "= 4.0.0.beta8"
+ gem "jekyll-feed", "~> 0.6"
+ gem "jekyll-jupyter-notebook"
+ gem "jekyll-seo-tag"
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]