thefuntasty_danger 0.2.0 → 0.3.0
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 +3 -3
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8f2df26bc55e2997164b90e9f913bc7f5e1016b66a44bc7e9a14de993cb289d2
|
|
4
|
+
data.tar.gz: c8814e8bfa8a6059dbf09f0090072839127cbbec4a28c64b82d1b4d8f806594f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 689270721552965ecf15114271b493fbe29744dc1dd9a4670b89244c4ab33bd622107ecb5131425c4bbc217531c9ed1f805efd4bd8f587bdd4dd784e93f2585b
|
|
7
|
+
data.tar.gz: ba6c55ade78163c735672bd72e6e8849871e57820687702a2dc965522237ce3048dfaa955a1e1e731bfab620044616544231eb5122cb70946501a87356fbf949
|
data/Dangerfile
CHANGED
|
@@ -11,7 +11,7 @@ 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)\/|develop$)/)
|
|
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)
|
|
@@ -23,7 +23,7 @@ is_pr_big = git.insertions > max_pr_length
|
|
|
23
23
|
github.dismiss_out_of_range_messages
|
|
24
24
|
|
|
25
25
|
# Throw errors
|
|
26
|
-
fail("Only hotfix and release can point to master.") if !can_be_merged_to_master and github.branch_for_base == "master"
|
|
26
|
+
fail("Only develop, hotfix and release can point to master.") if !can_be_merged_to_master and github.branch_for_base == "master"
|
|
27
27
|
|
|
28
28
|
# Throw descriptive warnings
|
|
29
29
|
warn("Branch name should have `release/`, `hotfix/`, `fix/`, `housekeep/` or `feature/` prefix.") if !has_correct_prefix
|
|
@@ -46,7 +46,7 @@ end
|
|
|
46
46
|
# Check commit messages
|
|
47
47
|
commit_lint.check warn: :all, disable: [:subject_length]
|
|
48
48
|
|
|
49
|
-
# Run Swiftlint if possible.
|
|
49
|
+
# Run Swiftlint if possible.
|
|
50
50
|
# There is no easier way to check, if danger-swiftlint is installed
|
|
51
51
|
if `gem list -i danger-swiftlint`.strip == "true" then
|
|
52
52
|
swiftlint.binary_path = swiftlint_binary_path if File.file?(swiftlint_binary_path)
|
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.
|
|
4
|
+
version: 0.3.0
|
|
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: 2020-01-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: danger
|
|
@@ -66,15 +66,15 @@ dependencies:
|
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
|
-
description: Danger configuration used at
|
|
69
|
+
description: Danger configuration used at Futured, currently mainly for iOS development
|
|
70
70
|
email:
|
|
71
|
-
- matej.jirasek@
|
|
71
|
+
- matej.jirasek@futured.app
|
|
72
72
|
executables: []
|
|
73
73
|
extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
|
75
75
|
files:
|
|
76
76
|
- Dangerfile
|
|
77
|
-
homepage: https://github.com/
|
|
77
|
+
homepage: https://github.com/futuredapp/danger
|
|
78
78
|
licenses:
|
|
79
79
|
- MIT
|
|
80
80
|
metadata: {}
|
|
@@ -96,5 +96,5 @@ requirements: []
|
|
|
96
96
|
rubygems_version: 3.0.3
|
|
97
97
|
signing_key:
|
|
98
98
|
specification_version: 4
|
|
99
|
-
summary: The Danger rules we use at
|
|
99
|
+
summary: The Danger rules we use at Futured
|
|
100
100
|
test_files: []
|