Skip to content

Commit 36115a1

Browse files
committed
Issue #119: Use Ruby 2.3.8 for now, as it works well with sass gem in demo app.
1 parent 15f2f04 commit 36115a1

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

deployments/playbooks/provision.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@
1313

1414
tasks:
1515
- name: Install app dependencies.
16-
apt: "name={{ item }} state=present"
17-
with_items:
18-
- libsqlite3-dev
19-
- libreadline-dev
16+
apt:
17+
name:
18+
- libsqlite3-dev
19+
- libreadline-dev
20+
state: present
2021

2122
- name: Ensure app directory exists and is writeable.
2223
file:

deployments/playbooks/vars.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ passenger_ruby: /usr/local/bin/ruby
1818

1919
# Variables for Ruby installation.
2020
ruby_install_from_source: true
21-
ruby_download_url: https://cache.ruby-lang.org/pub/ruby/2.6/ruby-2.6.0.tar.gz
22-
ruby_version: 2.6.0
21+
ruby_download_url: https://cache.ruby-lang.org/pub/ruby/2.3/ruby-2.3.8.tar.gz
22+
ruby_version: 2.3.8
2323

2424
# Variables for Node.js installation.
2525
nodejs_install_npm_user: root

0 commit comments

Comments
 (0)