sparkling-method 2.1.0-rc.14 → 2.1.0-rc.16

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.
@@ -1,10 +1,8 @@
1
1
  require 'json'
2
2
 
3
3
  Pod::Spec.new do |s|
4
- source_root = 'packages/sparkling-method/ios'
5
- source_globs = ->(patterns) { patterns.flat_map { |pattern| [pattern, "#{source_root}/#{pattern}"] } }
6
4
  s.name = 'SparklingMethod'
7
- s.version = "2.1.0-rc.12"
5
+ s.version = "2.1.0-rc.16"
8
6
  s.summary = "iOS SDK for Sparkling Method"
9
7
  s.description = "Core iOS method runtime for Sparkling, with Lynx integration, dependency injection support, and debug helpers."
10
8
  s.license = "Apache 2.0"
@@ -24,44 +22,46 @@ Pod::Spec.new do |s|
24
22
  }
25
23
 
26
24
  s.subspec 'Core' do |core|
27
- core.source_files = source_globs.call([
25
+ core.source_files = [
28
26
  'Sources/Core/Definitions/*.{h,m,swift}',
29
27
  'Sources/Core/Pipe/*.{h,m,swift}',
30
28
  'Sources/Core/Models/*.{h,m,swift}',
31
29
  'Sources/Core/Protocols/*.{h,m,swift}',
32
30
  'Sources/Core/Utils/*.{h,m,swift}',
33
31
  'Sources/Core/DI/**/*.{h,m,swift}',
34
- ])
32
+ ]
35
33
  core.dependency 'Mantle', '~> 2.2.0'
36
34
  end
37
35
 
38
36
  s.subspec 'Lynx' do |lynx|
39
- lynx.source_files = source_globs.call([
37
+ lynx.source_files = [
40
38
  'Sources/Lynx/Pipe/*.{h,m,swift}',
41
39
  'Sources/Lynx/Engine/*.{h,m,swift}',
42
40
  'Sources/Lynx/Definitions/*.{h,m,swift}',
43
41
  'Sources/Lynx/Module/*.{h,m,swift}',
44
42
  'Sources/Lynx/Models/*.{h,m,swift}',
45
- ])
43
+ ]
46
44
 
47
45
  lynx.dependency 'SparklingMethod/Core'
48
46
  lynx.dependency 'Lynx/Framework', '3.6.0'
47
+ lynx.dependency 'LynxBase/Framework', '3.6.0'
48
+ lynx.dependency 'LynxServiceAPI', '3.6.0'
49
49
  lynx.dependency 'PrimJS/quickjs', '>=2.12.0'
50
50
  lynx.dependency 'PrimJS/napi', '>=2.12.0'
51
51
  end
52
52
 
53
53
  s.subspec 'DIProvider' do |di|
54
- di.source_files = source_globs.call([
54
+ di.source_files = [
55
55
  'Sources/DIProvider/**/*.{h,m,swift}',
56
- ])
56
+ ]
57
57
 
58
58
  di.dependency 'SparklingMethod/Core'
59
59
  end
60
60
 
61
61
  s.subspec 'Debug' do |de|
62
- de.source_files = source_globs.call([
62
+ de.source_files = [
63
63
  'Sources/Debug/**/*.{h,m,swift}',
64
- ])
64
+ ]
65
65
 
66
66
  de.dependency 'SparklingMethod/Core'
67
67
  end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sparkling-method",
3
- "version": "2.1.0-rc.14",
3
+ "version": "2.1.0-rc.16",
4
4
  "homepage": "https://tiktok.github.io/sparkling/",
5
5
  "repository": {
6
6
  "type": "git",