thefuntasty_danger 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Dangerfile +2 -2
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24f758a34f8867657ceb604352d044e60ebf933cb89e58e89b2be7c624459cc3
|
|
4
|
+
data.tar.gz: e4d75eca57f1bda783de7a5a6de55f1adf273068860d562ea00d28efb306012e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab5551b553d44d8cc6d1cea75e47d32bb413231c2b0418e84d78507e3821bee21e82150b6cab28a69fcfe197239cb425bea7072ab304219423a36fc3b2008946
|
|
7
|
+
data.tar.gz: 2855fd074b34e6af2e4b4b85af394c9e363e1b0e5e875d71f05d84b83b4ea347da140a023b25aec7ed8b448ccb93aaa2170a907a62821382c3c83a42b559b154
|
data/Dangerfile
CHANGED
|
@@ -11,13 +11,13 @@ branch_name_pattern = /^(feature|hotfix|fix)\/([A-Z]{2,})-\d+-/
|
|
|
11
11
|
# Convenience variables
|
|
12
12
|
has_correct_prefix = github.branch_for_head.match(/^(feature|hotfix|fix|release|housekeep)\//)
|
|
13
13
|
is_feature_or_fix = github.branch_for_head.match(/^(feature|hotfix|fix)\//)
|
|
14
|
-
can_be_merged_to_master = github.branch_for_head.match(/^(release|hotfix
|
|
14
|
+
can_be_merged_to_master = github.branch_for_head.match(/^(release|hotfix)\//)
|
|
15
15
|
|
|
16
16
|
branch_contains_jira_id = github.branch_for_head.match(branch_name_pattern)
|
|
17
17
|
title_contains_jira_id = github.pr_title.match(pr_title_pattern)
|
|
18
18
|
|
|
19
19
|
is_pr_wip = github.pr_title.include? "[WIP]"
|
|
20
|
-
is_pr_big = git.
|
|
20
|
+
is_pr_big = git.insertions > max_pr_length
|
|
21
21
|
|
|
22
22
|
# Do not show out of range issues, not caused by the current PR
|
|
23
23
|
github.dismiss_out_of_range_messages
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: thefuntasty_danger
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matěj Kašpar Jirásek
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-02-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: danger
|
|
@@ -93,9 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
93
93
|
- !ruby/object:Gem::Version
|
|
94
94
|
version: '0'
|
|
95
95
|
requirements: []
|
|
96
|
-
|
|
97
|
-
rubygems_version: 2.7.7
|
|
96
|
+
rubygems_version: 3.0.2
|
|
98
97
|
signing_key:
|
|
99
98
|
specification_version: 4
|
|
100
|
-
summary: The Danger rules we use
|
|
99
|
+
summary: The Danger rules we use at The Funtasty
|
|
101
100
|
test_files: []
|