Skip to content

Commit 8d2fe2f

Browse files
authored
Update bundler config (#49)
* Update bundler * Update actions build badge * Capitalize `Build` in badge url
1 parent a72e07a commit 8d2fe2f

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build and test
1+
name: Build
22

33
on: [push]
44

@@ -17,7 +17,7 @@ jobs:
1717
ruby-version: ${{ matrix.ruby }}
1818
- name: Build with dependencies
1919
run: |
20-
gem install bundler -v 1.17
20+
gem install bundler -v 2.1
2121
bundle install
2222
- name: Test with rspec
2323
run: |

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@
88
# Gemfile.lock should not be under version control
99
# https://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
1010
Gemfile.lock
11+
12+
# ignore version manager files
13+
.tool-versions

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22
<img src="https://user-images.githubusercontent.com/1854876/28642569-b44a823a-7207-11e7-8f26-af023adc5d22.png" />
33
</p>
44
<p align="center">
5-
<a href="https://rubygems.org/gems/vrt"><img src="https://badge.fury.io/rb/vrt.svg" /></a>
6-
<img src="https://badge.buildkite.com/d9023f789854d9a40404670f02871ffe89f8ac214524e1cbdf.svg?branch=master" />
7-
<a href="https://www.rubydoc.info/gems/vrt/"><img src="https://img.shields.io/badge/doc-rubydoc-informational" /></a>
5+
<a href="https://rubygems.org/gems/vrt">
6+
<img src="https://badge.fury.io/rb/vrt.svg" />
7+
</a>
8+
<a href="https://github.com/bugcrowd/vrt-ruby/actions">
9+
<img src="https://github.com/bugcrowd/vrt-ruby/workflows/Build/badge.svg" />
10+
</a>
11+
<a href="https://www.rubydoc.info/gems/vrt/">
12+
<img src="https://img.shields.io/badge/doc-rubydoc-informational" />
13+
</a>
814
</p>
915

1016
# VRT Ruby Wrapper

vrt.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
1717
spec.require_paths = ['lib']
1818
spec.required_ruby_version = '>= 2.5'
1919

20-
spec.add_development_dependency 'bundler', '~> 1.14'
20+
spec.add_development_dependency 'bundler', '~> 2.1'
2121
spec.add_development_dependency 'pry', '~> 0.11'
2222
spec.add_development_dependency 'rake', '~> 12.3'
2323
spec.add_development_dependency 'rspec', '~> 3.6'

0 commit comments

Comments
 (0)