danger-swiftlint 0.29.0 → 0.29.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 89b230420b8fc4ed137f2f810f90ecfe1a2b5b21462f1b0e76182fe31cecbab6
4
- data.tar.gz: c52458c295da590c900b304cf20f81550a9c582eddc1222dd00cd37335057b3a
3
+ metadata.gz: '09f08823f729e2d57b4149feb6a5464ba21ca96f7bc0f07d8e156b0c21a90321'
4
+ data.tar.gz: 91fdc081552de5d57997b820c7bdffd6c63a4776f0db5d7358507676b6a58971
5
5
  SHA512:
6
- metadata.gz: 6f9c281be0a79eb84b0b0bcaf0d3db12aefa058edcf6f6a376011d1ce339fe811107ccbee8ffcb7e95a08b412e884f9f43e57c5740809bcbbce4bd5be7dc1cf0
7
- data.tar.gz: 602daf0375c26ed2de38ce0724e74ebf70287b24901b7eea6071dd722fdc8cc3d519654fc677053330c4397205351ce17b596b23e3c1283aa61215dea531e007
6
+ metadata.gz: cd93c164498ca997aab3c43928a4224c221b9124cda9b1af7a345139625677dd7622ca0d1d003416dbfce07a8e8a04b96c59528850d7c37bd99fa5e897e986ea
7
+ data.tar.gz: b78f4534c8f9882fe81b7a2cbd73d63de101dd3074b91525f72a766b7bbb0565421c913bac521e981e63260fab21eb76ff53a4fe3a1ba3ab6a367893a24bb035
@@ -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 "./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.0'
4
+ VERSION = '0.29.4'
5
5
  SWIFTLINT_VERSION = '0.43.1'
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.0
4
+ version: 0.29.4
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: 2021-09-15 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