cocoapods-embed-flutter 0.5.2 → 0.6.1

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.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/.vscode/extensions.json +6 -0
  3. data/CHANGELOG.md +70 -19
  4. data/Gemfile +2 -4
  5. data/Gemfile.lock +66 -9
  6. data/README.md +15 -1
  7. data/Rakefile +19 -8
  8. data/cocoapods-embed-flutter.gemspec +13 -11
  9. data/lib/cocoapods-embed-flutter/flutter/dependency.rb +22 -7
  10. data/lib/cocoapods-embed-flutter/flutter/downloader.rb +3 -0
  11. data/lib/cocoapods-embed-flutter/flutter/external_sources.rb +17 -10
  12. data/lib/cocoapods-embed-flutter/flutter/pubspec.rb +51 -18
  13. data/lib/cocoapods-embed-flutter/gem_version.rb +1 -1
  14. data/lib/cocoapods-embed-flutter/src/pub.rb +8 -2
  15. metadata +22 -33
  16. data/.github/config/config.js +0 -21
  17. data/.github/config/package-lock.json +0 -223
  18. data/.github/config/package.json +0 -16
  19. data/.github/config/pre_changelog_hook.js +0 -27
  20. data/.github/dependabot.yml +0 -23
  21. data/.github/workflows/main.yml +0 -146
  22. data/example/flutter_module/.gitignore +0 -48
  23. data/example/flutter_module/.metadata +0 -10
  24. data/example/flutter_module/README.md +0 -11
  25. data/example/flutter_module/analysis_options.yaml +0 -4
  26. data/example/flutter_module/flutter_module.iml +0 -18
  27. data/example/flutter_module/flutter_module_android.iml +0 -27
  28. data/example/flutter_module/lib/main.dart +0 -112
  29. data/example/flutter_module/pubspec.lock +0 -174
  30. data/example/flutter_module/pubspec.yaml +0 -87
  31. data/example/flutter_module/test/widget_test.dart +0 -30
  32. data/example/ios_app/Gemfile +0 -4
  33. data/example/ios_app/Gemfile.lock +0 -110
  34. data/example/ios_app/Podfile +0 -11
  35. data/example/ios_app/Podfile.lock +0 -28
  36. data/example/ios_app/ios_app/Assets.xcassets/AccentColor.colorset/Contents.json +0 -11
  37. data/example/ios_app/ios_app/Assets.xcassets/AppIcon.appiconset/Contents.json +0 -98
  38. data/example/ios_app/ios_app/Assets.xcassets/Contents.json +0 -6
  39. data/example/ios_app/ios_app/ContentView.swift +0 -40
  40. data/example/ios_app/ios_app/Preview Content/Preview Assets.xcassets/Contents.json +0 -6
  41. data/example/ios_app/ios_app/ios_appApp.swift +0 -18
  42. data/example/ios_app/ios_app.xcodeproj/project.pbxproj +0 -426
@@ -1,5 +1,8 @@
1
1
  require 'cocoapods-embed-flutter/flutter'
2
2
  require 'yaml'
3
+ require 'open3'
4
+ require 'concurrent'
5
+ require 'cocoapods'
3
6
 
4
7
  module Flutter
5
8
  module Pub
@@ -43,7 +46,8 @@ module Flutter
43
46
 
44
47
  if File.basename(path) == Pub::SPEC_FILE
45
48
  return path
46
- elsif Dir.exists?(File.expand_path(name, path)) && File.exists?(File.expand_path(Pub::SPEC_FILE, File.expand_path(name, path)))
49
+ elsif Dir.exists?(File.expand_path(name, path)) &&
50
+ File.exists?(File.expand_path(Pub::SPEC_FILE, File.expand_path(name, path)))
47
51
  return File.expand_path(Pub::SPEC_FILE, File.expand_path(name, path))
48
52
  elsif File.exists?(File.expand_path(Pub::SPEC_FILE, path))
49
53
  return File.expand_path(Pub::SPEC_FILE, path)
@@ -88,7 +92,7 @@ module Flutter
88
92
  end
89
93
 
90
94
  # @return [String] the path to the flutter project
91
- # dependencies cache file.
95
+ # dependencies cache file.
92
96
  #
93
97
  def package_cache_path
94
98
  File.join(project_path, Pub::TOOL_DIR, Pub::CACHE_FILE)
@@ -101,7 +105,7 @@ module Flutter
101
105
  end
102
106
 
103
107
  # @return [Array<Dependency>] the list of all the projects this
104
- # specification depends upon and are included in app release.
108
+ # specification depends upon and are included in app release.
105
109
  #
106
110
  def dependencies
107
111
  return [] unless @data.include?('dependencies')
@@ -123,37 +127,66 @@ module Flutter
123
127
  dependencies + dev_dependencies
124
128
  end
125
129
 
126
- # @return [Boolean] If the flutter project for this specification
127
- # has all its dependencies installed.
130
+ # Runs `flutter pub get` on project directory concurrently.
128
131
  #
129
- def setup?
130
- File.exists?(package_cache_path) && (!module? || File.exists?(pod_helper_path))
132
+ # @return [Concurrent::Promises::Future, Nil]
133
+ # {Nil} if `pub get` running/completed, otherwise
134
+ # runs `flutter pub get` task in background
135
+ # and returns its future.
136
+ #
137
+ def pub_get
138
+ future = @@current_pubgets[self]
139
+ return nil if !future.nil?
140
+ future = Concurrent::Promises.future do
141
+ stdout, stderr, status = Open3.capture3('flutter pub get', :chdir => self.project_path)
142
+ :result
143
+ end
144
+ @@current_pubgets[self] = future
145
+ return Concurrent::Promises.zip(future, *all_dependencies.map(&:install).compact)
131
146
  end
132
147
 
133
- # Sets up the project installing all specified dependencies.
148
+ # See if two {Spec} instances refer to the same pubspecs.
134
149
  #
135
- # @return [void]
150
+ # @return [Boolean] whether or not the two {Spec} instances refer to the
151
+ # same projects.
136
152
  #
137
- def setup
138
- return if setup?
139
- pup_get
140
- all_dependencies.each(&:install)
153
+ def ==(other)
154
+ self.class === other &&
155
+ other.defined_in_file == defined_in_file &&
156
+ other.instance_variable_get(:@data) == @data
141
157
  end
142
158
 
143
- # Runs `flutter pub get` on project directory.
144
- #
145
- # @return [void]
159
+ # @return [Fixnum] A hash identical for equals objects.
146
160
  #
147
- def pup_get
148
- Dir.chdir(project_path) { |path| system('flutter pub get', exception: true) }
161
+ def hash
162
+ [defined_in_file, @data].hash
149
163
  end
150
164
 
165
+ alias eql? ==
166
+
167
+ # Allows accessing top level values in `pubspec.yaml`,
168
+ # i.e. name, description, version etc.
169
+ #
170
+ # @param [Symbol] m
171
+ # top level key value to access,
172
+ # i.e. name, description etc.
173
+ #
174
+ # @return depending on accessed value type in `pubspec.yaml`.
175
+ #
176
+ # @raise [NoMethodError] if no method or custom attribute exists by
177
+ # the attribute name in pubspec.
178
+ #
151
179
  def method_missing(m, *args, &block)
152
180
  if @data.include?(m.to_s)
153
181
  return @data[m.to_s]
154
182
  end
155
183
  super.method_missing(m, *args, &block)
156
184
  end
185
+
186
+ private
187
+
188
+ # A hash containing all `pub get` promises.
189
+ @@current_pubgets = {}
157
190
  end
158
191
  end
159
192
  end
@@ -4,5 +4,5 @@
4
4
  module CocoapodsEmbedFlutter
5
5
  # The version of the cocoapods-embed-flutter.
6
6
  #
7
- VERSION = '0.5.2'.freeze
7
+ VERSION = '0.6.1'.freeze
8
8
  end
@@ -99,7 +99,10 @@ module Pod
99
99
  # pub 'flutter_module', :git => 'https://github.com/octokit/flutter_module.git', :commit => '082f8319af'
100
100
  #
101
101
  # The flutter module or its `pubspec` file is expected to be in the
102
- # root of the repository.
102
+ # root of the repository, if that's not the case specify relative path
103
+ # to flutter project in repository.
104
+ #
105
+ # pub 'flutter_module', :git => 'https://github.com/octokit/flutter_module.git', :tag => '0.7.0', :path => 'custom/flutter_module'
103
106
  #
104
107
  #
105
108
  # @note This method allow a nil name and the raises to be more
@@ -109,7 +112,10 @@ module Pod
109
112
  #
110
113
  def pub(name = nil, *requirements)
111
114
  pubspec = Flutter::Pub::ExternalSources.fetchWithNameAndOptions(name, requirements)
112
- pubspec.setup
115
+ Pod::UI.titled_section("Installing flutter dependencies for #{name}...", :verbose_prefix => '-> ') do
116
+ future = pubspec.pub_get
117
+ future.value! if !future.nil?
118
+ end
113
119
  raise StandardError, "Invalid flutter module: '#{name}'." unless File.exists?(pubspec.pod_helper_path)
114
120
  install_flutter_pods_for_pubspec(pubspec)
115
121
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-embed-flutter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Soumya Ranjan Mahunt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-12 00:00:00.000000000 Z
11
+ date: 2022-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: yaml
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: concurrent-ruby
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: bundler
57
71
  requirement: !ruby/object:Gem::Requirement
@@ -80,20 +94,17 @@ dependencies:
80
94
  - - ">="
81
95
  - !ruby/object:Gem::Version
82
96
  version: '0'
83
- description: Embed flutter modules in iOS projects.
97
+ description: |2
98
+ Straight forward way of declaring flutter modules as dependency for targets,
99
+ just like cocoapods does with pods.
84
100
  email:
85
101
  - devsoumyamahunt@gmail.com
86
102
  executables: []
87
103
  extensions: []
88
104
  extra_rdoc_files: []
89
105
  files:
90
- - ".github/config/config.js"
91
- - ".github/config/package-lock.json"
92
- - ".github/config/package.json"
93
- - ".github/config/pre_changelog_hook.js"
94
- - ".github/dependabot.yml"
95
- - ".github/workflows/main.yml"
96
106
  - ".gitignore"
107
+ - ".vscode/extensions.json"
97
108
  - CHANGELOG.md
98
109
  - CODE_OF_CONDUCT.md
99
110
  - Gemfile
@@ -102,27 +113,6 @@ files:
102
113
  - README.md
103
114
  - Rakefile
104
115
  - cocoapods-embed-flutter.gemspec
105
- - example/flutter_module/.gitignore
106
- - example/flutter_module/.metadata
107
- - example/flutter_module/README.md
108
- - example/flutter_module/analysis_options.yaml
109
- - example/flutter_module/flutter_module.iml
110
- - example/flutter_module/flutter_module_android.iml
111
- - example/flutter_module/lib/main.dart
112
- - example/flutter_module/pubspec.lock
113
- - example/flutter_module/pubspec.yaml
114
- - example/flutter_module/test/widget_test.dart
115
- - example/ios_app/Gemfile
116
- - example/ios_app/Gemfile.lock
117
- - example/ios_app/Podfile
118
- - example/ios_app/Podfile.lock
119
- - example/ios_app/ios_app.xcodeproj/project.pbxproj
120
- - example/ios_app/ios_app/Assets.xcassets/AccentColor.colorset/Contents.json
121
- - example/ios_app/ios_app/Assets.xcassets/AppIcon.appiconset/Contents.json
122
- - example/ios_app/ios_app/Assets.xcassets/Contents.json
123
- - example/ios_app/ios_app/ContentView.swift
124
- - example/ios_app/ios_app/Preview Content/Preview Assets.xcassets/Contents.json
125
- - example/ios_app/ios_app/ios_appApp.swift
126
116
  - lib/cocoapods-embed-flutter.rb
127
117
  - lib/cocoapods-embed-flutter/flutter.rb
128
118
  - lib/cocoapods-embed-flutter/flutter/dependency.rb
@@ -153,7 +143,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
153
143
  requirements:
154
144
  - - ">="
155
145
  - !ruby/object:Gem::Version
156
- version: '0'
146
+ version: '2.6'
157
147
  required_rubygems_version: !ruby/object:Gem::Requirement
158
148
  requirements:
159
149
  - - ">="
@@ -163,8 +153,7 @@ requirements: []
163
153
  rubygems_version: 3.0.3.1
164
154
  signing_key:
165
155
  specification_version: 4
166
- summary: Straight forward way of declaring flutter modules as dependency for targets,
167
- just like cocoapods does with pods.
156
+ summary: Embed flutter modules in iOS projects.
168
157
  test_files:
169
158
  - spec/info_spec.rb
170
159
  - spec/spec_helper.rb
@@ -1,21 +0,0 @@
1
- 'use strict'
2
- const config = require('conventional-changelog-conventionalcommits');
3
-
4
- module.exports = config({
5
- "types": [
6
- { type: 'feat', section: '🚀 Features' },
7
- { type: 'fix', section: '🐛 Fixes' },
8
- { type: 'perf', section: '🐎 Performance Improvements' },
9
- { type: 'revert', section: '⏪ Reverts' },
10
- { type: 'build', section: '🛠 Build System' },
11
- { type: 'deps', section: '🛠 Dependency' },
12
- { type: 'ci', section: '💡 Continuous Integration' },
13
- { type: 'refactor', section: '🔥 Refactorings' },
14
- { type: 'doc', section: '📚 Documentation' },
15
- { type: 'docs', section: '📚 Documentation' },
16
- { type: 'style', section: '💄 Styles' },
17
- { type: 'test', section: '✅ Tests' },
18
- { type: 'wip', hidden: true },
19
- { type: 'chore', hidden: true },
20
- ]
21
- })
@@ -1,223 +0,0 @@
1
- {
2
- "name": "config",
3
- "version": "1.0.0",
4
- "lockfileVersion": 2,
5
- "requires": true,
6
- "packages": {
7
- "": {
8
- "name": "config",
9
- "version": "1.0.0",
10
- "license": "MIT",
11
- "dependencies": {
12
- "@actions/core": "1.6.0",
13
- "conventional-changelog-conventionalcommits": "^4.6.3",
14
- "semver": "^7.3.5"
15
- }
16
- },
17
- "node_modules/@actions/core": {
18
- "version": "1.6.0",
19
- "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.6.0.tgz",
20
- "integrity": "sha512-NB1UAZomZlCV/LmJqkLhNTqtKfFXJZAUPcfl/zqG7EfsQdeUJtaWO98SGbuQ3pydJ3fHl2CvI/51OKYlCYYcaw==",
21
- "dependencies": {
22
- "@actions/http-client": "^1.0.11"
23
- }
24
- },
25
- "node_modules/@actions/http-client": {
26
- "version": "1.0.11",
27
- "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-1.0.11.tgz",
28
- "integrity": "sha512-VRYHGQV1rqnROJqdMvGUbY/Kn8vriQe/F9HR2AlYHzmKuM/p3kjNuXhmdBfcVgsvRWTz5C5XW5xvndZrVBuAYg==",
29
- "dependencies": {
30
- "tunnel": "0.0.6"
31
- }
32
- },
33
- "node_modules/array-ify": {
34
- "version": "1.0.0",
35
- "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz",
36
- "integrity": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4="
37
- },
38
- "node_modules/compare-func": {
39
- "version": "2.0.0",
40
- "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz",
41
- "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==",
42
- "dependencies": {
43
- "array-ify": "^1.0.0",
44
- "dot-prop": "^5.1.0"
45
- }
46
- },
47
- "node_modules/conventional-changelog-conventionalcommits": {
48
- "version": "4.6.3",
49
- "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz",
50
- "integrity": "sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==",
51
- "dependencies": {
52
- "compare-func": "^2.0.0",
53
- "lodash": "^4.17.15",
54
- "q": "^1.5.1"
55
- },
56
- "engines": {
57
- "node": ">=10"
58
- }
59
- },
60
- "node_modules/dot-prop": {
61
- "version": "5.3.0",
62
- "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz",
63
- "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==",
64
- "dependencies": {
65
- "is-obj": "^2.0.0"
66
- },
67
- "engines": {
68
- "node": ">=8"
69
- }
70
- },
71
- "node_modules/is-obj": {
72
- "version": "2.0.0",
73
- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
74
- "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
75
- "engines": {
76
- "node": ">=8"
77
- }
78
- },
79
- "node_modules/lodash": {
80
- "version": "4.17.21",
81
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
82
- "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
83
- },
84
- "node_modules/lru-cache": {
85
- "version": "6.0.0",
86
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
87
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
88
- "dependencies": {
89
- "yallist": "^4.0.0"
90
- },
91
- "engines": {
92
- "node": ">=10"
93
- }
94
- },
95
- "node_modules/q": {
96
- "version": "1.5.1",
97
- "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz",
98
- "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=",
99
- "engines": {
100
- "node": ">=0.6.0",
101
- "teleport": ">=0.2.0"
102
- }
103
- },
104
- "node_modules/semver": {
105
- "version": "7.3.5",
106
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
107
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
108
- "dependencies": {
109
- "lru-cache": "^6.0.0"
110
- },
111
- "bin": {
112
- "semver": "bin/semver.js"
113
- },
114
- "engines": {
115
- "node": ">=10"
116
- }
117
- },
118
- "node_modules/tunnel": {
119
- "version": "0.0.6",
120
- "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz",
121
- "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==",
122
- "engines": {
123
- "node": ">=0.6.11 <=0.7.0 || >=0.7.3"
124
- }
125
- },
126
- "node_modules/yallist": {
127
- "version": "4.0.0",
128
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
129
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
130
- }
131
- },
132
- "dependencies": {
133
- "@actions/core": {
134
- "version": "1.6.0",
135
- "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.6.0.tgz",
136
- "integrity": "sha512-NB1UAZomZlCV/LmJqkLhNTqtKfFXJZAUPcfl/zqG7EfsQdeUJtaWO98SGbuQ3pydJ3fHl2CvI/51OKYlCYYcaw==",
137
- "requires": {
138
- "@actions/http-client": "^1.0.11"
139
- }
140
- },
141
- "@actions/http-client": {
142
- "version": "1.0.11",
143
- "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-1.0.11.tgz",
144
- "integrity": "sha512-VRYHGQV1rqnROJqdMvGUbY/Kn8vriQe/F9HR2AlYHzmKuM/p3kjNuXhmdBfcVgsvRWTz5C5XW5xvndZrVBuAYg==",
145
- "requires": {
146
- "tunnel": "0.0.6"
147
- }
148
- },
149
- "array-ify": {
150
- "version": "1.0.0",
151
- "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz",
152
- "integrity": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4="
153
- },
154
- "compare-func": {
155
- "version": "2.0.0",
156
- "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz",
157
- "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==",
158
- "requires": {
159
- "array-ify": "^1.0.0",
160
- "dot-prop": "^5.1.0"
161
- }
162
- },
163
- "conventional-changelog-conventionalcommits": {
164
- "version": "4.6.3",
165
- "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz",
166
- "integrity": "sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==",
167
- "requires": {
168
- "compare-func": "^2.0.0",
169
- "lodash": "^4.17.15",
170
- "q": "^1.5.1"
171
- }
172
- },
173
- "dot-prop": {
174
- "version": "5.3.0",
175
- "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz",
176
- "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==",
177
- "requires": {
178
- "is-obj": "^2.0.0"
179
- }
180
- },
181
- "is-obj": {
182
- "version": "2.0.0",
183
- "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
184
- "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w=="
185
- },
186
- "lodash": {
187
- "version": "4.17.21",
188
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
189
- "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
190
- },
191
- "lru-cache": {
192
- "version": "6.0.0",
193
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
194
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
195
- "requires": {
196
- "yallist": "^4.0.0"
197
- }
198
- },
199
- "q": {
200
- "version": "1.5.1",
201
- "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz",
202
- "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc="
203
- },
204
- "semver": {
205
- "version": "7.3.5",
206
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
207
- "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
208
- "requires": {
209
- "lru-cache": "^6.0.0"
210
- }
211
- },
212
- "tunnel": {
213
- "version": "0.0.6",
214
- "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz",
215
- "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg=="
216
- },
217
- "yallist": {
218
- "version": "4.0.0",
219
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
220
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
221
- }
222
- }
223
- }
@@ -1,16 +0,0 @@
1
- {
2
- "name": "config",
3
- "version": "1.0.0",
4
- "description": "conventional-changelog-action hooks",
5
- "main": "config.js",
6
- "license": "MIT",
7
- "author": {
8
- "name": "Soumya Ranjan Mahunt",
9
- "email": "devsoumyamahunt@gmail.com"
10
- },
11
- "dependencies": {
12
- "@actions/core": "1.6.0",
13
- "conventional-changelog-conventionalcommits": "^4.6.3",
14
- "semver": "^7.3.5"
15
- }
16
- }
@@ -1,27 +0,0 @@
1
- const path = require('path');
2
- const fs = require('fs');
3
- const semver = require('semver');
4
- const core = require('@actions/core');
5
- const childProcess = require("child_process");
6
-
7
- exports.preVersionGeneration = (version) => {
8
- const { GITHUB_WORKSPACE } = process.env;
9
- core.info(`Computed version bump: ${version}`);
10
-
11
- const gem_info_file = path.join(GITHUB_WORKSPACE, 'lib/cocoapods-embed-flutter/gem_version.rb');
12
- const gem_info = `${fs.readFileSync(gem_info_file)}`;
13
- core.info(`Current gem info: ${gem_info}`);
14
-
15
- currentVersion = gem_info.match(/VERSION\s*=\s'(.*)'/)[1];
16
- core.info(`Current version: ${currentVersion}`);
17
-
18
- if (semver.lt(version, currentVersion)) { version = currentVersion; }
19
- core.info(`Final version: ${version}`);
20
-
21
- const new_gem_info = gem_info.replace(/VERSION\s*=\s*.*/g, `VERSION = '${version}'.freeze`);
22
- core.info(`Updated gem info: ${new_gem_info}`);
23
- fs.writeFileSync(gem_info_file, new_gem_info);
24
- return version;
25
- }
26
-
27
- exports.preTagGeneration = (tag) => { }
@@ -1,23 +0,0 @@
1
- version: 2
2
- updates:
3
- - package-ecosystem: bundler
4
- directory: /
5
- insecure-external-code-execution: allow
6
- schedule:
7
- interval: weekly
8
- commit-message:
9
- prefix: 'deps: '
10
-
11
- - package-ecosystem: github-actions
12
- directory: /
13
- schedule:
14
- interval: monthly
15
- commit-message:
16
- prefix: 'ci(Deps): '
17
-
18
- - package-ecosystem: npm
19
- directory: .github/config
20
- schedule:
21
- interval: monthly
22
- commit-message:
23
- prefix: 'ci(Deps): '