cocoapods-binary-flutter 0.0.4 → 0.0.5

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: dbccf5f81ab2d1c4027344919097747c08243f635dfce19e25c920e89fed0046
4
- data.tar.gz: 4676603b66098d1c0a74a12a72ad183b6d4dd730f191b5e5544869251c41af4f
3
+ metadata.gz: c7bd713354fcb6ef65505563fe38ff02c5a87f36334ac34e75db9c28448688e1
4
+ data.tar.gz: 81d7ed3a1bad7fd0de0648754dc90b04eeef7f72ee1042d677105f39c921c2ca
5
5
  SHA512:
6
- metadata.gz: d043d042a6e9ed71008da1f2b5a959a4fda52e35caebe466580ccf0aff6432221d6635871977ab8f7fcd23932719e8be34aff16f21891742475b05a3ea5dbc8a
7
- data.tar.gz: 24254a17154575e5a90106d6e6908f9ca28cdc5f206d7449c91e06202ea910989252b80905e05e64f05f6cf5cacca12e2cfe93267b3f8bbbeed6f02f4d69c40f
6
+ metadata.gz: 843536681be735fcce9564c8808f25a3fc8cfa2c11b09c2d6b9ebe4dd70618957f1311380ae9298dc9f3110e1e6cf2cf93ed91c2772f1cc42ad81d4dbb254faa
7
+ data.tar.gz: 2d0f5ea33c1d56a7de3d7a2c8c3ca6ede2d72e3d31511d2381b2cc5151e1b5df79b5a61b54a8dd6f0d8cf23f932494614ff121b254bf51bf1c21ecaff01a4d8c
@@ -1,3 +1,3 @@
1
1
  module CocoapodsBinaryFlutter
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -104,6 +104,28 @@ module Pod
104
104
  def install_lzflutter_application_pod(flutter_binary_path)
105
105
  pod 'App', :path => File.join(flutter_binary_path, 'flutter'), :inhibit_warnings => true
106
106
  end
107
+
108
+ # Run the post-install script to set build settings on Flutter plugins.
109
+ #
110
+ # @example
111
+ # post_install do |installer|
112
+ # flutter_post_install(installer)
113
+ # end
114
+ # @param [Pod::Installer] installer Passed to the `post_install` block.
115
+ # @param [boolean] skip Do not change any build configurations. Set to suppress
116
+ # "Missing `flutter_post_install" exception.
117
+ def flutter_post_install(installer, skip: false)
118
+ return if skip
119
+
120
+ installer.pods_project.targets.each do |target|
121
+ target.build_configurations.each do |build_configuration|
122
+ # flutter_additional_ios_build_settings is in Flutter root podhelper.rb
123
+ # Annotation under invoke for cocoapods-binary-flutter use
124
+ # flutter_additional_ios_build_settings(target)
125
+ end
126
+ end
127
+ end
128
+
107
129
  end
108
130
  end
109
131
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-binary-flutter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - 单浩强
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-16 00:00:00.000000000 Z
11
+ date: 2023-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -56,7 +56,7 @@ homepage: https://github.com/EXAMPLE/cocoapods-binary-flutter
56
56
  licenses:
57
57
  - MIT
58
58
  metadata: {}
59
- post_install_message:
59
+ post_install_message:
60
60
  rdoc_options: []
61
61
  require_paths:
62
62
  - lib
@@ -71,8 +71,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  - !ruby/object:Gem::Version
72
72
  version: '0'
73
73
  requirements: []
74
- rubygems_version: 3.0.3
75
- signing_key:
74
+ rubygems_version: 3.1.4
75
+ signing_key:
76
76
  specification_version: 4
77
77
  summary: A longer description of cocoapods-binary-flutter.
78
78
  test_files: []