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:
parent
9292313e0c
commit
1cb88eb2ba
Notes:
git
2020-06-18 19:15:07 +09:00
2 changed files with 7 additions and 1 deletions
|
@ -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"
|
||||
|
|
6
lib/bundler/templates/newgem/.travis.yml.tt
Normal file
6
lib/bundler/templates/newgem/.travis.yml.tt
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
language: ruby
|
||||
cache: bundler
|
||||
rvm:
|
||||
- <%= RUBY_VERSION %>
|
||||
before_install: gem install bundler -v <%= Bundler::VERSION %>
|
Loading…
Add table
Reference in a new issue