motion-fabric 0.2 → 0.3
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/motion-fabric.rb +8 -2
- 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: e5481157a15ef8f2e2a2e30855a42e7818df24be
|
|
4
|
+
data.tar.gz: 83097f1a1c3a0e8550dc8aa6d656b0edbf249d3c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 13ce83dbb9553a8bcbb32424a5c7d73ce5fff9be923a12c1461ac80f06ff507972117ccc941efa3ff63a150156cc9bf5da78682d829ad9fd502478176816d4ab
|
|
7
|
+
data.tar.gz: cb1c625d502e9627e10662a50d78187cb7651fe8158ad681f2932b1f75c0566f5189825554e92fa53142fd6c3f07474782f51fc2e23a1eeebb6a587ff2378ac2
|
data/lib/motion-fabric.rb
CHANGED
|
@@ -121,8 +121,14 @@ end
|
|
|
121
121
|
|
|
122
122
|
namespace :fabric do
|
|
123
123
|
task :setup do
|
|
124
|
-
|
|
125
|
-
Rake::Task["
|
|
124
|
+
# Build for the simulator so we generate the data needed by the "run" tool
|
|
125
|
+
Rake::Task["build:simulator"].execute
|
|
126
|
+
# Execute the "run" tool so Fabric.app registers our app
|
|
127
|
+
Rake::Task["fabric:dsym:simulator"].execute
|
|
128
|
+
# Do not build again
|
|
129
|
+
ENV["skip_build"] = 'true'
|
|
130
|
+
# Run the app in the simulator so Fabric activates our app
|
|
131
|
+
Rake::Task["simulator"].execute
|
|
126
132
|
end
|
|
127
133
|
|
|
128
134
|
task :upload do
|