fastlane-plugin-stream_actions 0.3.37 → 0.3.39

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: d2c51bd6585d2bb6ffd14e34348109460142ae45a97256601310807b88689bd3
4
- data.tar.gz: c5caf7964185fde162a2586af5f459f14069fae309a272fb57bcde3249d38b57
3
+ metadata.gz: a91a3ce766780880671a7536fab4ed531613ab6773f95ccd01d1343eba86bd58
4
+ data.tar.gz: af693c039532c317f4fc0873f8f3d8ef97006c81015cde9e8652fdbd4915fd65
5
5
  SHA512:
6
- metadata.gz: 8454d0d3288d2612ab78008c0aab87deb0609884741931732a11968afa8e9f7d6938b92f06e362a2e593182673f9d7d0486546e0b3f2a832b350e15e9e39c9fd
7
- data.tar.gz: 861114c1acd0487e4573fcc39d0a44057f81b7bccf4f2fd040399cb8f6ad6dbfc8613ad32e3b3494ac77a2851bdb3a1578592b5935db39eb67f3d6192a75d144
6
+ metadata.gz: 0f0dda72c27a96b6ea570842a4ac8588f617bd1033faf17001764d108ea283c6bf03c5daa2dd69523256171386be71a07a629aeb117edc3ed95873c9e7649339
7
+ data.tar.gz: ba13abd574c88c387e7074a5bce17b84bfd377d3825949c3f9b71f2d716a35b988c5a9f8a63f3c710e2a0d7de968355698fd97f3724f23560fed56b938735e58
@@ -66,7 +66,7 @@ module Fastlane
66
66
  ]
67
67
  end
68
68
 
69
- def self.supported?(_platform)
69
+ def self.is_supported?(platform)
70
70
  true
71
71
  end
72
72
  end
@@ -89,7 +89,7 @@ module Fastlane
89
89
  ]
90
90
  end
91
91
 
92
- def self.supported?(_platform)
92
+ def self.is_supported?(platform)
93
93
  true
94
94
  end
95
95
  end
@@ -42,7 +42,7 @@ module Fastlane
42
42
  ]
43
43
  end
44
44
 
45
- def self.supported?(_platform)
45
+ def self.is_supported?(platform)
46
46
  true
47
47
  end
48
48
  end
@@ -74,7 +74,7 @@ module Fastlane
74
74
  ]
75
75
  end
76
76
 
77
- def self.supported?(_platform)
77
+ def self.is_supported?(platform)
78
78
  true
79
79
  end
80
80
  end
@@ -61,7 +61,7 @@ module Fastlane
61
61
  ]
62
62
  end
63
63
 
64
- def self.supported?(_platform)
64
+ def self.is_supported?(platform)
65
65
  [:ios].include?(platform)
66
66
  end
67
67
  end
@@ -50,7 +50,7 @@ module Fastlane
50
50
  ]
51
51
  end
52
52
 
53
- def self.supported?(_platform)
53
+ def self.is_supported?(platform)
54
54
  true
55
55
  end
56
56
  end
@@ -42,7 +42,7 @@ module Fastlane
42
42
  ]
43
43
  end
44
44
 
45
- def self.supported?(_platform)
45
+ def self.is_supported?(platform)
46
46
  [:ios].include?(platform)
47
47
  end
48
48
  end
@@ -54,7 +54,7 @@ module Fastlane
54
54
  ]
55
55
  end
56
56
 
57
- def self.supported?(_platform)
57
+ def self.is_supported?(platform)
58
58
  true
59
59
  end
60
60
  end
@@ -122,7 +122,7 @@ module Fastlane
122
122
  ]
123
123
  end
124
124
 
125
- def self.supported?(_platform)
125
+ def self.is_supported?(platform)
126
126
  [:ios].include?(platform)
127
127
  end
128
128
  end
@@ -50,7 +50,7 @@ module Fastlane
50
50
  ]
51
51
  end
52
52
 
53
- def self.supported?(_platform)
53
+ def self.is_supported?(platform)
54
54
  true
55
55
  end
56
56
  end
@@ -58,6 +58,8 @@ module Fastlane
58
58
  if params[:version].nil? && !["patch", "minor", "major"].include?(params[:bump_type])
59
59
  UI.user_error!("Please use type parameter with one of the options: type:patch, type:minor, type:major")
60
60
  end
61
+
62
+ sh('git config --global user.name "Stream Bot"')
61
63
  end
62
64
 
63
65
  def self.ensure_release_tag_is_new(version_number)
@@ -146,7 +148,7 @@ module Fastlane
146
148
  ]
147
149
  end
148
150
 
149
- def self.supported?(_platform)
151
+ def self.is_supported?(platform)
150
152
  [:ios].include?(platform)
151
153
  end
152
154
  end
@@ -110,7 +110,7 @@ module Fastlane
110
110
  ]
111
111
  end
112
112
 
113
- def self.supported?(_platform)
113
+ def self.is_supported?(platform)
114
114
  [:ios].include?(platform)
115
115
  end
116
116
  end
@@ -156,7 +156,7 @@ module Fastlane
156
156
  ]
157
157
  end
158
158
 
159
- def self.supported?(_platform)
159
+ def self.is_supported?(platform)
160
160
  true
161
161
  end
162
162
  end
@@ -47,7 +47,7 @@ module Fastlane
47
47
  ]
48
48
  end
49
49
 
50
- def self.supported?(_platform)
50
+ def self.is_supported?(platform)
51
51
  [:ios].include?(platform)
52
52
  end
53
53
  end
@@ -45,7 +45,7 @@ module Fastlane
45
45
  ]
46
46
  end
47
47
 
48
- def self.supported?(_platform)
48
+ def self.is_supported?(platform)
49
49
  [:ios].include?(platform)
50
50
  end
51
51
  end
@@ -54,7 +54,7 @@ module Fastlane
54
54
  ]
55
55
  end
56
56
 
57
- def self.supported?(_platform)
57
+ def self.is_supported?(platform)
58
58
  [:android].include?(platform)
59
59
  end
60
60
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = '0.3.37'
3
+ VERSION = '0.3.39'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-stream_actions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.37
4
+ version: 0.3.39
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-07 00:00:00.000000000 Z
11
+ date: 2024-08-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xctest_list