1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Use consistent filenaming for Travis template

This commit is contained in:
Frank Lam 2020-06-03 04:02:48 +08:00 committed by Hiroshi SHIBATA
parent 9292313e0c
commit 1cb88eb2ba
Notes: git 2020-06-18 19:15:07 +09:00
2 changed files with 7 additions and 1 deletions

View file

@ -112,7 +112,7 @@ module Bundler
when "github"
templates.merge!(".github/workflows/main.yml.tt" => ".github/workflows/main.yml")
when "travis"
templates.merge!("travis.yml.tt" => ".travis.yml")
templates.merge!(".travis.yml.tt" => ".travis.yml")
when "gitlab"
templates.merge!(".gitlab-ci.yml.tt" => ".gitlab-ci.yml")
when "circle"

View file

@ -0,0 +1,6 @@
---
language: ruby
cache: bundler
rvm:
- <%= RUBY_VERSION %>
before_install: gem install bundler -v <%= Bundler::VERSION %>