solara 0.11.0 → 0.12.0

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: e9b751d68677093be4f8ea17ed28bd26290d8a127416e0eb4b8ac720211db486
4
- data.tar.gz: e3012b2ec92d3461d7b03a907195c73ccc8cefc7ec5373a4587a75f257fc1c01
3
+ metadata.gz: ba91f4ac1b50db8a88fceaf7f7bf0d64fe2e85f4f868ca5c49ece0323e6012e5
4
+ data.tar.gz: 655a127659f52925774f2be24bcc0e5f0b809dc2888dc8cc64596d5258e67258
5
5
  SHA512:
6
- metadata.gz: 5028b0c6de6fab9101abc28c01622d52d96aad7a8c6f9f5e81b310f0df98e0266a4f17b62176390ada2152c9ef35de61860c5101b6eb1fe3823631479ffe8752
7
- data.tar.gz: fdc79484c48fe17cb276a6595ded7723f34130ee68653b3467e9659b666447102c04310e89c7a9bc374713b4cda3089339650f3f9329483678fe3e00c4af708f
6
+ metadata.gz: bc749685336868918081a7887f4f9e8ae4fa674ef514c44bc610c23282563149fce14ff99773c9848e45f53a55fc331dea2f0831638590d13ee857276e7ad5d5
7
+ data.tar.gz: 43804a36d7b9d8c4280348f217716b9926a56aad6617bcfc25b3a979abc72dba53fa8e61004fa5752b76d444e874e6f490de2e0bc6daa0a1a726a2a502b68d61
@@ -71,10 +71,14 @@ class XcodeProjectSwitcher
71
71
  raise ArgumentError, "Invalid platform: #{@platform}"
72
72
  end
73
73
 
74
- File.open(debug_xcconfig_path, "w") { |file| file.write("#include? \"Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig\"") }
75
- File.open(release_xcconfig_path, "w") { |file| file.write("#include? \"Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig\"") }
76
- File.open(debug_xcconfig_path, "w") { |file| file.write("#include \"#{base_xcconfig_name}\"\n") }
77
- File.open(release_xcconfig_path, "w") { |file| file.write("#include \"#{base_xcconfig_name}\"\n") }
74
+ File.open(debug_xcconfig_path, "w") { |file|
75
+ file.write("#include? \"Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig\"\n")
76
+ file.write("#include \"#{base_xcconfig_name}\"\n")
77
+ }
78
+ File.open(debug_xcconfig_path, "w") { |file|
79
+ file.write("#include? \"Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig\"\n")
80
+ file.write("#include \"#{base_xcconfig_name}\"\n")
81
+ }
78
82
  end
79
83
 
80
84
  def set_base_xcconfigs(debug_xcconfig_path, release_xcconfig_path)
@@ -90,7 +94,7 @@ class XcodeProjectSwitcher
90
94
 
91
95
  def add_artifacts_group
92
96
  artifacts_dir_name = FilePath.artifacts_dir_name_ios
93
-
97
+
94
98
  case @platform
95
99
  when Platform::Flutter
96
100
  flutter_group = @project.groups.find { |group| group.name == 'Flutter' }
@@ -1,3 +1,3 @@
1
1
  module Solara
2
- VERSION = "0.11.0"
2
+ VERSION = "0.12.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solara
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Malek Kamel