From 055b62b833e176cf1d8b3f4477761cbf1ceaed84 Mon Sep 17 00:00:00 2001 From: Abu Nashir Date: Sat, 15 Apr 2017 15:37:07 +0700 Subject: [PATCH] Add support for multiple ruby versions This commit adds support for multiple ruby versions, now our CI will run our test suite for each of the major ruby version. The version we supporting so far are 2.1.9, 2.2.0, 2.3.1 and 2.4.1 --- .travis.yml | 7 +++++-- README.md | 7 ++++++- circle.yml | 11 ----------- 3 files changed, 11 insertions(+), 14 deletions(-) delete mode 100644 circle.yml diff --git a/.travis.yml b/.travis.yml index d6ef4d9..e7d9e35 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,8 @@ sudo: false language: ruby rvm: - - 2.3.3 -before_install: gem install bundler -v 1.14.3 + - 2.4.1 + - 2.3.1 + - 2.2.0 + - 2.1.9 +before_install: gem install bundler -v 1.14.6 diff --git a/README.md b/README.md index 5f29b4a..6f9dc6c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,11 @@ # Digicert -[![CircleCI](https://circleci.com/gh/abunashir/digicert-api/tree/master.svg?style=svg&circle-token=21edcc7e3704f7d5b689e87b9e3af658e34a5be4)](https://circleci.com/gh/abunashir/digicert-api/tree/master) +[![Build +Status](https://travis-ci.org/riboseinc/digicert.svg?branch=master)](https://travis-ci.org/riboseinc/digicert) +[![Code +Climate](https://codeclimate.com/github/riboseinc/digicert/badges/gpa.svg)](https://codeclimate.com/github/riboseinc/digicert) + +The Ruby client for the official Digicert API. ## Installation diff --git a/circle.yml b/circle.yml deleted file mode 100644 index 8384e23..0000000 --- a/circle.yml +++ /dev/null @@ -1,11 +0,0 @@ -dependencies: - override: - - gem install bundler -v "~> 1.14" - -database: - override: - - bin/setup - -test: - override: - - COVERAGE=true bin/rspec