Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Update to ruby 2.3.4 in Dockerfile + some docs
Browse files Browse the repository at this point in the history
  • Loading branch information
alecglassford committed Oct 31, 2017
1 parent 2f26640 commit 54ed2a7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.3.0
FROM ruby:2.3.4

# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1
Expand Down
10 changes: 5 additions & 5 deletions install_on_ubuntu.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
## Install Klaxon on Ubuntu 14.04 (with CapHub or capistrano)

First, ensure that you have the libpq-dev package, ruby 2.3.0 and the bundler gem installed:
First, ensure that you have the libpq-dev package, ruby 2.3.4 and the bundler gem installed:

* sudo apt-get install libpq-dev

* gem install bundler (required both locally and on remote server)

* rvm install ruby-2.3.0 (This assumes you have installed RVM.)
* rvm install ruby-2.3.4 (This assumes you have installed RVM.)

## Deploy with capitrano or caphub.

Properly creating a capistrano deployment task is beyond the scope of these instructions. But additional information can be found below:

* https://github.com/capistrano/capistrano
Expand Down
2 changes: 1 addition & 1 deletion klaxon-nginx-vhost-example.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ server {
server_name klaxon-domain.yourdomain.com;
root /path/to_/code/rack_apps/klaxon/current/public;

passenger_ruby /home/user_name/.rvm/wrappers/ruby-2.3.0/ruby;
passenger_ruby /home/user_name/.rvm/wrappers/ruby-2.3.4/ruby;
passenger_enabled on;
rails_env production;

Expand Down

0 comments on commit 54ed2a7

Please sign in to comment.