Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Depend on Ruby >= 2.4.9 #42

Merged
merged 1 commit into from
Dec 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 29 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,32 @@
os: linux

language: ruby
bundler_args: --without development

rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx
matrix:
- 2.4.9
- 2.5.7
- 2.6.5
- jruby-9.2.8.0
- rbx-4.5

jdk:
- openjdk8

jobs:
fast_finish: true
allow_failures:
- rvm: rbx
branches:
only:
- master
sudo: false
- rvm: rbx-4.5

env:
global:
- JRUBY_OPTS="--debug"

bundler_args: --without development

cache: bundler

before_install:
- gem install bundler

script:
- bundle exec rake
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Guard::Bundler

[![Gem Version](https://badge.fury.io/rb/guard-bundler.png)](http://badge.fury.io/rb/guard-bundler) [![Build Status](https://travis-ci.org/guard/guard-bundler.png?branch=master)](https://travis-ci.org/guard/guard-bundler) [![Dependency Status](https://gemnasium.com/guard/guard-bundler.png)](https://gemnasium.com/guard/guard-bundler) [![Code Climate](https://codeclimate.com/github/guard/guard-bundler.png)](https://codeclimate.com/github/guard/guard-bundler) [![Coverage Status](https://coveralls.io/repos/guard/guard-bundler/badge.png?branch=master)](https://coveralls.io/r/guard/guard-bundler)
[![Gem Version](https://badge.fury.io/rb/guard-bundler.png)](http://badge.fury.io/rb/guard-bundler) [![Build Status](https://travis-ci.org/guard/guard-bundler.png?branch=master)](https://travis-ci.org/guard/guard-bundler) [![Code Climate](https://codeclimate.com/github/guard/guard-bundler.png)](https://codeclimate.com/github/guard/guard-bundler) [![Coverage Status](https://coveralls.io/repos/guard/guard-bundler/badge.png?branch=master)](https://coveralls.io/r/guard/guard-bundler)

Bundler guard allows to automatically & intelligently install/update bundle when needed.

* Compatible with Bundler 1.0.x
* Tested against Ruby 1.9.3, 2.0.0, 2.1.0, JRuby & Rubinius.
* Compatible with Bundler 2.1.x
* Tested against the latest Ruby 2.4.x, 2.5.x, 2.6.x, JRuby & Rubinius. See [`.travis-ci.yml`](https://github.com/guard/guard-bundler/blob/master/.travis.yml) for the exact versions.

## Install

Expand Down
2 changes: 1 addition & 1 deletion guard-bundler.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.summary = 'Guard gem for Bundler'
s.description = 'Guard::Bundler automatically install/update your gem bundle when needed'

s.required_ruby_version = '>= 1.9.2'
s.required_ruby_version = '>= 2.4.9'

s.add_dependency 'guard', '~> 2.2'
s.add_dependency 'guard-compat', '~> 1.1'
Expand Down