We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4442660 commit 03f7f97Copy full SHA for 03f7f97
src/SDK/Language/Ruby.php
@@ -148,6 +148,12 @@ public function getFiles()
148
'template' => '/ruby/docs/example.md.twig',
149
'minify' => false,
150
],
151
+ [
152
+ 'scope' => 'default',
153
+ 'destination' => '.travis.yml',
154
+ 'template' => '/ruby/.travis.yml.twig',
155
+ 'minify' => false,
156
+ ],
157
];
158
}
159
templates/ruby/.travis.yml.twig
@@ -0,0 +1,16 @@
1
+language: ruby
2
+
3
+rvm:
4
+ - 2.7
5
6
+jobs:
7
+ include:
8
+ - stage: ruby gems release
9
+ rvm: "2.7"
10
+ script: echo "Deploying to ruby gems ..."
11
+ deploy:
12
+ provider: rubygems
13
+ api_key: $RUBYGEMS_TOKEN
14
+ gem: {{spec.title | caseLower | caseSnake}}
15
+ on:
16
+ tags: true
0 commit comments