mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
102d7f7606
Closes #1336 * removes all the deprecated methods * removes Ruby 2.3, 2.4 and Rails 4.2 from travis * bundle updates the test gemfiles * Removes some pre-5.0 logic from a test helper * Targets Ruby 2.5 with rubocop and fixes violations We could also remove support for Rails 5.0 and 5.1, which are now EOL, but I don't see a strong reason to do that. We don't seem to have to do anything special to support those versions.
29 lines
512 B
YAML
29 lines
512 B
YAML
rvm:
|
|
- 2.5
|
|
- 2.6
|
|
- 2.7
|
|
- jruby-9.2.8.0
|
|
- ruby-head
|
|
before_install:
|
|
- gem update --system
|
|
- gem update bundler
|
|
- gem cleanup bundler
|
|
install: "bundle install --jobs 8"
|
|
script: "bundle exec rake"
|
|
gemfile:
|
|
- gemfiles/5.0.gemfile
|
|
- gemfiles/5.1.gemfile
|
|
- gemfiles/5.2.gemfile
|
|
- gemfiles/6.0.gemfile
|
|
- gemfiles/master.gemfile
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- rvm: ruby-head
|
|
- gemfile: gemfiles/master.gemfile
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
sudo: false
|
|
cache: bundler
|