danger-swiftlint 0.29.1 → 0.30.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d720b57c16c8aff2cce79424d89a1842fa8b75429b76ffd9ec8996dbad156165
4
- data.tar.gz: f31202cd4c98f1060bbe1ea0e533f4dc97796ec6eff28f27baf806f77fa1944a
3
+ metadata.gz: 9fa52887f31bab6965b197dd6c9db017de701059dc53cb869ef6b995c1d5e8b8
4
+ data.tar.gz: 20fb5fe8b9837f15394d629e4556da56e851d14f41b8b7d4478602638e5bc10e
5
5
  SHA512:
6
- metadata.gz: ca97ce0a8f2c819dd0dda81b68bb7ef7244ac0f454b9f7769eb927c9ed85944c185cfb641d8b3517c0b0b7972991de058cf953fc450404c2d37532b47ddcf1fe
7
- data.tar.gz: 6ed0689373d2fe221abbd1f9be170d1b8a1e8087e53640a3b157273c9b63ca391125b40241b5e17e27c4217531424e0759ff562ad934e57097f67d2001d0e0df
6
+ metadata.gz: 97ac4fd4183005accf2dcec0df94e2de34563cea7b16924a7adb90f93f1924eab734a374d328d78707ecc2fb4fe54bcaaf0cee3b8d5cc8be5c59e292b03149e0
7
+ data.tar.gz: eb785108b4887f040842302f7771b90c11674f23e21ef90c0975a4b66f6c85fd3871a8602ce693e76397c95e5e6d9d8051d243e82bbffa644cfa3578c13bcbfb
@@ -12,10 +12,11 @@ namespace :swiftlint do
12
12
  ASSET = 'portable_swiftlint.zip'
13
13
  URL = "#{REPO}/releases/download/#{VERSION}/#{ASSET}"
14
14
  DESTINATION = File.expand_path(File.join(File.dirname(__FILE__), 'bin'))
15
+ SCRIPT_PATH = File.expand_path(File.join(File.dirname(__FILE__)))
15
16
  SWIFTLINT_MD5_HASH = DangerSwiftlint::SWIFTLINT_HASH
16
17
 
17
18
  puts "Downloading swiftlint@#{VERSION}"
18
- sh "sh downloadSwiftlint.sh -u #{URL} -d #{DESTINATION} -a #{ASSET} -dh #{SWIFTLINT_MD5_HASH}"
19
+ sh "#{SCRIPT_PATH}/downloadSwiftlint.sh -u #{URL} -d #{DESTINATION} -a #{ASSET} -dh #{SWIFTLINT_MD5_HASH}"
19
20
  end
20
21
  end
21
22
 
@@ -0,0 +1,52 @@
1
+ #!/usr/bin/env bash
2
+
3
+ ### Load arguments
4
+ while [[ $# > 0 ]]
5
+ do
6
+ case "$1" in
7
+ -u|--url)
8
+ url="$2"
9
+ shift;;
10
+
11
+ -d|--destination)
12
+ destination="$2"
13
+ shift;;
14
+
15
+ -a|--asset)
16
+ asset="$2"
17
+ shift;;
18
+
19
+ -dh|--default_hash)
20
+ default_hash="$2"
21
+ shift;;
22
+
23
+ --help|*)
24
+ echo "Usage:"
25
+ echo ' -u --url: URL for SwiftLint version to download'
26
+ echo ' -d --destination: Folder where SwiftLint will be downloaded'
27
+ echo " -a --asset: Temporary name for the zip file"
28
+ echo " -dh --default_hash: Default SwiftLint md5 hash to check for if no version specified"
29
+ exit 1;;
30
+ esac
31
+ shift
32
+ done
33
+
34
+ ### Download
35
+ mkdir -p "${destination}"
36
+ curl -s -L "${url}" -o "${asset}"
37
+
38
+ # If macOS
39
+ if [[ "$OSTYPE" == "darwin"* ]]; then
40
+ resulting_hash=`md5 -q ${asset}`
41
+ # Default to linux
42
+ else
43
+ resulting_hash=`md5sum ${asset} | awk '{ print $1 }'`
44
+ fi
45
+
46
+ if [[ ! -z "${SWIFTLINT_VERSION}" || "$resulting_hash" == "${default_hash}" ]]; then
47
+ # if another version is set || our hardcoded hash is correct
48
+ unzip -o -q "${asset}" -d "${destination}"
49
+ else
50
+ echo "Zip was corrupted, try again later."
51
+ fi
52
+ rm "${asset}"
data/lib/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DangerSwiftlint
4
- VERSION = '0.29.1'
5
- SWIFTLINT_VERSION = '0.43.1'
4
+ VERSION = '0.30.0'
5
+ SWIFTLINT_VERSION = '0.46.2'
6
6
  SWIFTLINT_HASH = '4eaeabbb43b308975d16e3d9869880dc'
7
7
  end
@@ -220,6 +220,7 @@ module Danger
220
220
  end
221
221
 
222
222
  it 'crashes if renamed_files is not configured properly' do
223
+ allow_any_instance_of(Swiftlint).to receive(:lint).and_return('')
223
224
  allow(@swiftlint.git).to receive(:modified_files).and_return([
224
225
  'spec/fixtures/SwiftFileThatWasRenamedToSomethingElse.swift'
225
226
  ])
@@ -227,6 +228,7 @@ module Danger
227
228
  end
228
229
 
229
230
  it 'does not crash if a modified file was renamed' do
231
+ allow_any_instance_of(Swiftlint).to receive(:lint).and_return('')
230
232
  allow(@swiftlint.git).to receive(:modified_files).and_return([
231
233
  'spec/fixtures/SwiftFileThatWasRenamedToSomethingElse.swift'
232
234
  ])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: danger-swiftlint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.29.1
4
+ version: 0.30.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ash Furrow
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2021-09-07 00:00:00.000000000 Z
15
+ date: 2022-02-14 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: danger
@@ -155,6 +155,7 @@ extra_rdoc_files: []
155
155
  files:
156
156
  - bin/danger-swiftlint
157
157
  - ext/swiftlint/Rakefile
158
+ - ext/swiftlint/downloadSwiftlint.sh
158
159
  - ext/swiftlint/swiftlint.rb
159
160
  - lib/danger_plugin.rb
160
161
  - lib/version.rb
@@ -180,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
180
181
  - !ruby/object:Gem::Version
181
182
  version: '0'
182
183
  requirements: []
183
- rubygems_version: 3.2.20
184
+ rubygems_version: 3.0.9
184
185
  signing_key:
185
186
  specification_version: 4
186
187
  summary: A Danger plugin for linting Swift with SwiftLint.