diff options
author | Yuri Zubov <y.zubov@sumatosoft.com> | 2018-04-20 12:17:29 +0300 |
---|---|---|
committer | Yuri Zubov <y.zubov@sumatosoft.com> | 2018-04-20 13:15:44 +0300 |
commit | a38057c0a6cae070748187b8c15f1ed26441a47e (patch) | |
tree | 671752ebe3177cd6a9af37bf36d384ef229a111d | |
parent | 234199264146bcd19f6949efbe122d62346dbdff (diff) |
remove .ruby-version & add many ruby-version in .travis.yml
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | .ruby-version | 1 | ||||
-rw-r--r-- | .travis.yml | 8 |
3 files changed, 9 insertions, 2 deletions
@@ -11,6 +11,8 @@ /tmp/ .idea/ Gemfile.lock +.ruby-version +.sass-cache/ # Used by dotenv library to load environment variables. # .env diff --git a/.ruby-version b/.ruby-version deleted file mode 100644 index ebf14b4..0000000 --- a/.ruby-version +++ /dev/null @@ -1 +0,0 @@ -2.1.8 diff --git a/.travis.yml b/.travis.yml index 8f97b30..db2925a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,11 @@ language: ruby sudo: false cache: bundler +before_install: + - gem install bundler rvm: - - 2.1.6 + - 2.1 + - 2.2 + - 2.3 + - 2.4 + - 2.5 |