From 1589bfc184a8fab7210fd702d581e73e79e267d8 Mon Sep 17 00:00:00 2001 From: Adam Mills Date: Wed, 15 Nov 2017 22:24:25 -0500 Subject: [PATCH] Specify minimum ruby version of 2.3 (#3902) --- Gemfile | 2 ++ source/developers/documentation/index.markdown | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index c30860255d8..b1f741ed4ab 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,7 @@ source "https://rubygems.org" +ruby "> 2.3.0" + group :development do gem 'rake', '~> 10.0' gem 'jekyll', '~> 3.0' diff --git a/source/developers/documentation/index.markdown b/source/developers/documentation/index.markdown index f2306b2b5aa..33dd22d859f 100644 --- a/source/developers/documentation/index.markdown +++ b/source/developers/documentation/index.markdown @@ -20,7 +20,7 @@ For larger changes, we suggest that you clone the website repository. This way, To test your changes locally, you need to install **Ruby** and its dependencies (gems): -- [Install Ruby](https://www.ruby-lang.org/en/documentation/installation/) if you don't have it already. +- [Install Ruby](https://www.ruby-lang.org/en/documentation/installation/) if you don't have it already. Ruby version 2.3.0 or higher is required. - Install `bundler`, a dependency manager for Ruby: `$ gem install bundler` - In your home-assistant.github.io root directory, run `$ bundle` to install the gems you need.