File tree 3 files changed +1
-12
lines changed
test/generators/suspenders
3 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -6,16 +6,14 @@ class CiGenerator < Rails::Generators::Base
6
6
7
7
source_root File . expand_path ( "../../templates/ci" , __FILE__ )
8
8
desc <<~MARKDOWN
9
- Uses [GitHub Actions][] for CI, and [Dependabot][] for dependency updates.
9
+ Uses [GitHub Actions][] for CI
10
10
11
11
[GitHub Actions]: https://docs.github.com/en/actions
12
- [Dependabot]: https://docs.github.com/en/code-security/dependabot/working-with-dependabot
13
12
MARKDOWN
14
13
15
14
def ci_files
16
15
empty_directory ".github/workflows"
17
16
template "ci.yml" , ".github/workflows/ci.yml"
18
- template "dependabot.yml" , ".github/dependabot.yaml"
19
17
end
20
18
21
19
private
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ class CiGeneratorTest < Rails::Generators::TestCase
15
15
run_generator
16
16
17
17
assert_file app_root ( ".github/workflows/ci.yml" )
18
- assert_file app_root ( ".github/dependabot.yaml" )
19
18
end
20
19
end
21
20
@@ -25,7 +24,6 @@ class CiGeneratorTest < Rails::Generators::TestCase
25
24
run_generator
26
25
27
26
assert_no_file app_root ( ".github/workflows/ci.yml" )
28
- assert_no_file app_root ( ".github/dependabot.yaml" )
29
27
end
30
28
end
31
29
end
You can’t perform that action at this time.
0 commit comments