fwtoolkit 2.0.6 → 2.0.7
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 +4 -4
- data/lib/fwtoolkit/cli/cocoapods.rb +1 -1
- data/lib/fwtoolkit/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 047e50c08f49a284e9bfd89020a3a9b47859491c
|
4
|
+
data.tar.gz: ff2f90520ae85fac41998826dc58c7e4de4be094
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91c36dccc281a5312e0cd5f8bfd05abc95d6e6f97585b925cbb953d9e981db448648e424d3878dd0b75c82a04ba45a5a7aa7ddb637ec714eeb74e91dee90d2f9
|
7
|
+
data.tar.gz: 837dd9dc1ac4765bd4cd02ad36e62219e155ebc659812b26edab2ea93d06796b04275108f3e93f20fd36056d9160bc399d87b23d926f8bc5e5d0e3e8a7ee1fd0
|
@@ -17,7 +17,7 @@ module FWToolkit
|
|
17
17
|
def install(project_root)
|
18
18
|
add_cocoapods_to_project project_root
|
19
19
|
if File.exists? File.join(project_root, 'Podfile')
|
20
|
-
inside(project_root) { run! 'bundle exec pod install
|
20
|
+
inside(project_root) { run! "rvm #{IO.read('.ruby-version').gsub("\n", '')}@#{IO.read('.ruby-gemset').gsub("\n", '')} do bundle exec pod install", :capture => true }
|
21
21
|
else
|
22
22
|
say_status :skip, "Unable to locate the Podfile. Skipping pod install", :blue
|
23
23
|
end
|
data/lib/fwtoolkit/version.rb
CHANGED