Skip to content

Commit a4f5c8f

Browse files
committed
update travis integration
1 parent 502f654 commit a4f5c8f

File tree

7 files changed

+46
-29
lines changed

7 files changed

+46
-29
lines changed

.coditsu/ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
repository_id: '19e90f01-0da7-45f2-b0a7-afc6ad40e30e'
2+
api_key: <%= ENV['CODITSU_API_KEY'] %>
3+
api_secret: <%= ENV['CODITSU_API_SECRET'] %>

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
coverage
22
vendor/bundle
3+
.coditsu/local.yml

.rubocop.yml

-17
This file was deleted.

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.6.5

.travis.yml

+39-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,42 @@
1+
services:
2+
- docker
3+
14
dist: trusty
25
sudo: false
3-
language: ruby
46
cache: bundler
5-
rvm:
6-
- 2.3.8
7-
- 2.4.5
8-
- 2.5.3
9-
- ruby-head
10-
- jruby-9.2.0.0
11-
12-
before_install:
13-
- gem install bundler
7+
8+
git:
9+
depth: false
10+
11+
test: &test
12+
stage: Test
13+
language: ruby
14+
before_install:
15+
- gem install bundler
16+
- gem update --system
17+
script: bundle exec rake test
18+
19+
jobs:
20+
include:
21+
- <<: *test
22+
rvm: 2.6.5
23+
- <<: *test
24+
rvm: 2.5.7
25+
- <<: *test
26+
rvm: 2.4.8
27+
- <<: *test
28+
rvm: jruby-9.2.8.0
29+
- <<: *test
30+
rvm: ruby-head
31+
32+
- stage: coditsu
33+
language: ruby
34+
rvm: 2.6.5
35+
before_install:
36+
- gem update --system
37+
- gem install bundler
38+
script: \curl -sSL https://api.coditsu.io/run/ci | bash
39+
40+
stages:
41+
- coditsu
42+
- test

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ DEPENDENCIES
3838
user_agent_parser!
3939

4040
BUNDLED WITH
41-
1.17.2
41+
2.0.2

MIT-LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1717
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1818
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1919
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)