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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/Dangerfile +3 -3
  3. metadata +6 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 59cdac319667f1bc7861ed4623e6cfb91bdced41e6ddd8216f9b94394a9a8e55
4
- data.tar.gz: adf97e7d462e62ec21704a95122c551f37bdfac49215dff47a4bccbe7fd2b8e0
3
+ metadata.gz: 8f2df26bc55e2997164b90e9f913bc7f5e1016b66a44bc7e9a14de993cb289d2
4
+ data.tar.gz: c8814e8bfa8a6059dbf09f0090072839127cbbec4a28c64b82d1b4d8f806594f
5
5
  SHA512:
6
- metadata.gz: 9e351decf32749f00108dd8bd25b9bb586e9be96a815748a83fa1510f0ebd58d2537157a598264095f61b28043057799e206940160359e02a5b7464f56d097ba
7
- data.tar.gz: 64e95fe5f9aa778104dd629409c357df4be8983b606d95d45656c15aa1360f63537c985f8b227cd27805b12d2c25474a91e89f373786e2df5722d8a0c9b2ced0
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|develop)\//)
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.2.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: 2019-10-18 00:00:00.000000000 Z
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 The Funtasty, currently mainly for iOS development
69
+ description: Danger configuration used at Futured, currently mainly for iOS development
70
70
  email:
71
- - matej.jirasek@thefuntasty.com
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/thefuntasty/danger
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 The Funtasty
99
+ summary: The Danger rules we use at Futured
100
100
  test_files: []