thefuntasty_danger 0.1.6 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/Dangerfile +6 -5
  3. metadata +11 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d665d8d7e90433c6e02e84a19135081dfc84811d4fe79cb6d60f95ddaed85dd3
4
- data.tar.gz: 83d3c7c4880909caa81d1f69d74e353e3a9c508894724d867719428e449aa8c6
3
+ metadata.gz: 1b53bef28a56ea50d5d4ba3b99b22b5f61e81b46a586d4585bd93da0f87e84d9
4
+ data.tar.gz: fb516cf388f994cb431d5cae07516be29fb839e1b8f971ddb5b53da9d8e9be54
5
5
  SHA512:
6
- metadata.gz: 8911450b25fbfd75c0970f7be77f8fbd01b1bd7100777be6035f4b39d66633448a110a0def571eb35002d3e0c43e174b0e62ec90b08eee9a43d4c8b94010fbf4
7
- data.tar.gz: 35e0ed8e36c3a467c226374d02abfb21a94ec601bd0f9f9fc0337336632371798486ca14da6deeaeff46f6580bcbac3c57179949698de9a77e2a3ef818c9d3a2
6
+ metadata.gz: d2997d155c3219eade8555e53ed387c0bce62f6c48b112b64f273eaf80d78a3a0b0dcef130d95e3fb91182d4f424d8d8e1f37cdbaccd63e3df446a1ee25fa081
7
+ data.tar.gz: 259e93e45cffc8f4e60f70353b54818d58060fa1111051d22fc1f937924cceaf0521e9171bec81e424b391266bca12126a51ecb85d7fd71bbca6231270f277e5
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,9 +46,10 @@ end
46
46
  # Check commit messages
47
47
  commit_lint.check warn: :all, disable: [:subject_length]
48
48
 
49
- # Lint Swift files if possible
50
- if File.file?(swiftlint_binary_path) then
51
- swiftlint.binary_path = './Pods/SwiftLint/swiftlint'
49
+ # Run Swiftlint if possible.
50
+ # There is no easier way to check, if danger-swiftlint is installed
51
+ if `gem list -i danger-swiftlint`.strip == "true" then
52
+ swiftlint.binary_path = swiftlint_binary_path if File.file?(swiftlint_binary_path)
52
53
  swiftlint.max_num_violations = 20
53
54
  swiftlint.lint_files inline_mode: true
54
55
  end
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.6
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matěj Kašpar Jirásek
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-11 00:00:00.000000000 Z
11
+ date: 2020-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: danger
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '5'
19
+ version: '8'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '5'
26
+ version: '8'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: danger-commit_lint
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -66,19 +66,19 @@ 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: {}
81
- post_install_message:
81
+ post_install_message:
82
82
  rdoc_options: []
83
83
  require_paths:
84
84
  - lib
@@ -94,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
94
  version: '0'
95
95
  requirements: []
96
96
  rubygems_version: 3.0.3
97
- signing_key:
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: []