ios_toolchain 0.2.3 → 0.2.4
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2a9993e7fb786c7859ea7816426fc8b8a54e30d9
|
|
4
|
+
data.tar.gz: 7ba5c05e0a9201899620f08071045ee8dc1993c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5920517e606396cddc3de35982cbcbaebffbecf88b72df9727f84972bc02a7e9522f4cf008d2b272d9104a3d3ee90725f7e49712a146c5b8f7b939e43b99cf57
|
|
7
|
+
data.tar.gz: 47c5b35fc03ba1fce10cbaab67ed1fee088621b330a21e6ada90eaaacd0532cfb5cf9372cac7ad738ebbfde23d907c544800e0203c33a2f25c8f32afb93c9c40
|
|
@@ -24,17 +24,17 @@ namespace :ios do
|
|
|
24
24
|
|
|
25
25
|
desc 'Builds the app with Default configuration'
|
|
26
26
|
task :default do
|
|
27
|
-
Rake::Task['build:with'].invoke('archive', nil)
|
|
27
|
+
Rake::Task['ios:build:with'].invoke('archive', nil)
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
desc 'Builds the app with Acceptance configuration'
|
|
31
31
|
task :acceptance do
|
|
32
|
-
Rake::Task['build:with'].invoke('archive', 'Acceptance')
|
|
32
|
+
Rake::Task['ios:build:with'].invoke('archive', 'Acceptance')
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
desc 'Builds the app with Beta configuration'
|
|
36
36
|
task :beta do
|
|
37
|
-
Rake::Task['build:with'].invoke('archive', 'Beta')
|
|
37
|
+
Rake::Task['ios:build:with'].invoke('archive', 'Beta')
|
|
38
38
|
end
|
|
39
39
|
end
|
|
40
40
|
end
|
|
@@ -28,12 +28,12 @@ end
|
|
|
28
28
|
|
|
29
29
|
namespace :ios do
|
|
30
30
|
desc 'Run all the tests: unit and UI, 32bit and 64bit'
|
|
31
|
-
task :specs => ['specs:unit', 'specs:ui']
|
|
31
|
+
task :specs => ['ios:specs:unit', 'ios:specs:ui']
|
|
32
32
|
|
|
33
33
|
namespace :specs do
|
|
34
34
|
desc 'Run 64bit unit tests only'
|
|
35
35
|
task :slim do
|
|
36
|
-
Rake::Task['specs:unit'].invoke(skip_32bit: true)
|
|
36
|
+
Rake::Task['ios:specs:unit'].invoke(skip_32bit: true)
|
|
37
37
|
end
|
|
38
38
|
|
|
39
39
|
desc 'Run the unit tests (optionally skip 32 bit devices)'
|
|
@@ -4,7 +4,7 @@ include IosToolchain::Helpers
|
|
|
4
4
|
|
|
5
5
|
namespace :ios do
|
|
6
6
|
desc 'Reports and attempts to tidy up common cleanliness problems with the codebase'
|
|
7
|
-
task :tidy => ['tidy:project_file', 'tidy:specs', 'tidy:whitespace', 'tidy:lint']
|
|
7
|
+
task :tidy => ['ios:tidy:project_file', 'ios:tidy:specs', 'ios:tidy:whitespace', 'ios:tidy:lint']
|
|
8
8
|
|
|
9
9
|
namespace :tidy do
|
|
10
10
|
desc 'Unfocusses any focussed Quick specs'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ios_toolchain
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dennis Schmidt
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-02-
|
|
11
|
+
date: 2017-02-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|