fastlane-plugin-stream_actions 0.3.101 → 0.3.102

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: 70baa58a4007406978755528bf3c44029b2a6774a26d41310b71af32ee13e86c
4
- data.tar.gz: 80c9062729860791c39049ea4e64cbb7efae7e6791bc7839f6f6f68a24c2c276
3
+ metadata.gz: f7a5f4f54c1b73f7315013a5dba75408bd62ca37a9235ebce3e88049c34eef14
4
+ data.tar.gz: 5ca58feafa207002bed373d517e7f871a2f9376c0a612d2dc8145ee0f15cf48c
5
5
  SHA512:
6
- metadata.gz: 13d933c65f6698af94f43b51fe870a127b8e4424c98dfe8fb4fe12950976c73789826f7c1b1618278026bb1d317f77c3d27ae8a862eaa42db4faa178a35fde22
7
- data.tar.gz: b63e3ded374681a33585820bbabbe6c60df10dd2d291157f16dd82c21dd9ddcde5e6bd25e7dfa8f6730010742dc34fcfbfc0731980ed5c70479eb1fdcb9ebcf1
6
+ metadata.gz: 9cb26012e63f6779ed6a32b026f806b838361c64ea95b5289bbbf6557e9211d762ec035a9d28ca94b367198b2f5682d195076fd49fd0164bc05237b407df1d41
7
+ data.tar.gz: 90de269d563ddf4b52bec6a497a1d8a53737b637c5d15e12798d02791cbe04131b6526d47b8e4e09fc6f7aca10deaf889c71155136f50e7bba21526625132648
@@ -0,0 +1,35 @@
1
+ module Fastlane
2
+ module Actions
3
+ class CheckUnsafeFlagsAction < Action
4
+ def self.run(params)
5
+ if File.read(params[:swift_package_path]).include?('unsafe')
6
+ UI.user_error!('Package.swift contains unsafe flags.')
7
+ end
8
+ end
9
+
10
+ #####################################################
11
+ # @!group Documentation
12
+ #####################################################
13
+
14
+ def self.description
15
+ 'Checks if Package.swift contains unsafe flags'
16
+ end
17
+
18
+ def self.available_options
19
+ [
20
+ FastlaneCore::ConfigItem.new(
21
+ key: :swift_package_path,
22
+ description: 'The path to your project Package.swift',
23
+ is_string: true,
24
+ default_value: './Package.swift',
25
+ optional: false
26
+ )
27
+ ]
28
+ end
29
+
30
+ def self.is_supported?(platform)
31
+ true
32
+ end
33
+ end
34
+ end
35
+ end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = '0.3.101'
3
+ VERSION = '0.3.102'
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.101
4
+ version: 0.3.102
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-10-13 00:00:00.000000000 Z
11
+ date: 2025-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: xctest_list
@@ -233,6 +233,7 @@ files:
233
233
  - lib/fastlane/plugin/stream_actions/actions/allure_create_testcase.rb
234
234
  - lib/fastlane/plugin/stream_actions/actions/allure_run_testplan.rb
235
235
  - lib/fastlane/plugin/stream_actions/actions/build_app_for_ios_simulator.rb
236
+ - lib/fastlane/plugin/stream_actions/actions/check_unsafe_flags.rb
236
237
  - lib/fastlane/plugin/stream_actions/actions/current_branch.rb
237
238
  - lib/fastlane/plugin/stream_actions/actions/custom_match.rb
238
239
  - lib/fastlane/plugin/stream_actions/actions/git_status.rb