README.md in awesome_bot-1.17.1 vs README.md in awesome_bot-1.17.2

- old
+ new

@@ -147,11 +147,11 @@ To use `awesome_bot` with Travis CI, [connect your repo](https://travis-ci.org/) and create a [`.travis.yml` file](https://github.com/ziadoz/awesome-php/blob/master/.travis.yml). ```yml language: ruby -rvm: 2.2 +rvm: 2.4.1 before_script: gem install awesome_bot script: awesome_bot README.md ``` To turn off email notifications, add the lines below @@ -159,42 +159,42 @@ ```yml notifications: email: false ``` -### Circle CI +### CircleCI -If you prefer Circle CI, it'll work too. [Connect your repo](https://circleci.com/) and create a [`circle.yml` file](https://github.com/tmcw/awesome-geojson). +If you prefer CircleCI, it'll work too. [Connect your repo](https://circleci.com/) and create a [`circle.yml` file](https://github.com/tmcw/awesome-geojson). ```yml machine: ruby: - version: 2.2.0 + version: 2.4.1 test: pre: - gem install awesome_bot override: - awesome_bot README.md ``` ### More -Circle CI, [Codeship](https://codeship.com/), and [Semaphore CI](https://semaphoreci.com/) support running tests without adding a file to the repo (a public configuration file can however help others contribute). +CircleCI, [Codeship](https://codeship.com/), and [Semaphore CI](https://semaphoreci.com/) support running tests without adding a file to the repo (a public configuration file can however help others contribute). ``` # Codeship Setup -rvm use 2.2.0 --install +rvm use 2.4.1 --install gem install awesome_bot Test awesome_bot README.md ``` ``` # Semaphore CI Language: Ruby -Ruby version: 2.2 +Ruby version: 2.4.1 Databases for: don't generate Setup: gem install awesome_bot awesome_bot README.md ```