1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00

upgrade to ruby 2.6

This commit is contained in:
Sylvain 2020-05-18 10:28:30 +02:00
parent 46e4b9173d
commit 879bc7b58a
7 changed files with 12 additions and 12 deletions

View File

@ -1 +1 @@
ruby-2.3.8 ruby-2.6.5

View File

@ -1,4 +1,4 @@
FROM ruby:2.3.8-alpine FROM ruby:2.6.5-alpine
MAINTAINER peng@sleede.com MAINTAINER peng@sleede.com
# Install upgrade system packages # Install upgrade system packages

View File

@ -19,7 +19,7 @@ gem 'sass-rails', '~> 5.0', '>= 5.0.6'
# Use Uglifier as compressor for JavaScript assets # Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 4.1.20' gem 'uglifier', '>= 4.1.20'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes # See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', '= 0.12.0', platforms: :ruby gem 'therubyracer', '= 0.12.3', platforms: :ruby
# Use jquery as the JavaScript library # Use jquery as the JavaScript library
gem 'jquery-rails' gem 'jquery-rails'

View File

@ -419,8 +419,8 @@ GEM
ffi ffi
term-ansicolor (1.7.1) term-ansicolor (1.7.1)
tins (~> 1.0) tins (~> 1.0)
therubyracer (0.12.0) therubyracer (0.12.3)
libv8 (~> 3.16.14.0) libv8 (~> 3.16.14.15)
ref ref
thor (1.0.1) thor (1.0.1)
thread_safe (0.3.6) thread_safe (0.3.6)
@ -534,11 +534,11 @@ DEPENDENCIES
spring-watcher-listen (~> 2.0.0) spring-watcher-listen (~> 2.0.0)
stripe (= 5.1.1) stripe (= 5.1.1)
sys-filesystem sys-filesystem
therubyracer (= 0.12.0) therubyracer (= 0.12.3)
uglifier (>= 4.1.20) uglifier (>= 4.1.20)
vcr (= 3.0.1) vcr (= 3.0.1)
web-console (>= 3.3.0) web-console (>= 3.3.0)
webmock webmock
BUNDLED WITH BUNDLED WITH
1.17.3 2.1.4

View File

@ -111,7 +111,7 @@ Before reporting an issue, please check if your issue is not listed in the [know
<a name="related-documentation"></a> <a name="related-documentation"></a>
## Related Documentation ## Related Documentation
- [Ruby 2.3.0](http://ruby-doc.org/core-2.3.0/) - [Ruby 2.6.5](http://ruby-doc.org/core-2.6.5/)
- [Ruby on Rails](http://api.rubyonrails.org) - [Ruby on Rails](http://api.rubyonrails.org)
- [AngularJS](https://docs.angularjs.org/api) - [AngularJS](https://docs.angularjs.org/api)
- [Angular-Bootstrap](http://angular-ui.github.io/bootstrap/) - [Angular-Bootstrap](http://angular-ui.github.io/bootstrap/)

View File

@ -93,7 +93,7 @@ This procedure is not easy to follow so if you don't need to write some code for
10. Install bundler in the current RVM gemset 10. Install bundler in the current RVM gemset
```bash ```bash
gem install bundler --version=1.17.3 gem install bundler
``` ```
11. Install the required ruby gems and javascript plugins 11. Install the required ruby gems and javascript plugins

View File

@ -157,11 +157,11 @@ install_rvm() {
install_ruby() { install_ruby() {
echo 'Installing Ruby' echo 'Installing Ruby'
sudo apt-get install -y libxml2-dev libxslt1-dev libpq-dev libidn11-dev sudo apt-get install -y libxml2-dev libxslt1-dev libpq-dev libidn11-dev
rvm install ruby-2.3.8 rvm install ruby-2.6.5
rvm use ruby-2.3.8@global rvm use ruby-2.6.5@global
gem update --system --no-doc gem update --system --no-doc
gem update --no-doc gem update --no-doc
rvm use ruby-2.3.8 --default rvm use ruby-2.6.5 --default
rvm cleanup all rvm cleanup all
} }