ios_toolchain 0.2.1 → 0.2.2
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: f84794867ff43111e9f296a22f96c1ffca6f803b
|
4
|
+
data.tar.gz: 86b174307c5d06bd0dcd8c5a654f8c4afe244836
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b0018a4d9d996ed8fb0ab83acb00b82d78587638c783e06fdfa9daf2d25ee264c50c2090f98247a6c43580337aa1557075aa9a644158635520631a35ebae954
|
7
|
+
data.tar.gz: c559444b4c83e34448cfa0f31a8a9d7bc3c5ef14a312e4980d7c5a5c18bda438595999b40dd6ee48c3c31341433ac39a8942f10b52afce126e2a34a4e2143c43
|
@@ -17,8 +17,8 @@ end
|
|
17
17
|
def run_tests_or_bail(tests, args)
|
18
18
|
args.with_defaults(:skip_32bit => false)
|
19
19
|
|
20
|
-
Rake::Task['clean:build'].reenable
|
21
|
-
Rake::Task['clean:simulator'].reenable
|
20
|
+
Rake::Task['ios:clean:build'].reenable
|
21
|
+
Rake::Task['ios:clean:simulator'].reenable
|
22
22
|
tests.each do |target|
|
23
23
|
if(!system(build_specs_cmd(target, skip_32bit: args[:skip_32bit])))
|
24
24
|
bail("Specs failure - please fix the failing specs and try again.")
|
@@ -37,12 +37,12 @@ namespace :ios do
|
|
37
37
|
end
|
38
38
|
|
39
39
|
desc "Run the unit tests (optionally skip 32 bit devices)"
|
40
|
-
task :unit, [:skip_32bit] => ['clean:build', 'clean:simulator'] do |task, args|
|
40
|
+
task :unit, [:skip_32bit] => ['ios:clean:build', 'ios:clean:simulator'] do |task, args|
|
41
41
|
run_tests_or_bail(config.test_targets, args)
|
42
42
|
end
|
43
43
|
|
44
44
|
desc "Run the UI tests (optionally skip 32 bit devices)"
|
45
|
-
task :ui, [:skip_32bit] => ['clean:build', 'clean:simulator'] do |task, args|
|
45
|
+
task :ui, [:skip_32bit] => ['ios:clean:build', 'ios:clean:simulator'] do |task, args|
|
46
46
|
run_tests_or_bail(config.ui_test_targets, args)
|
47
47
|
end
|
48
48
|
end
|
@@ -2,11 +2,11 @@
|
|
2
2
|
desc "Checks you if you need to do any cleanup of the code before you push"
|
3
3
|
task :validate do
|
4
4
|
Rake::Task['git:check_for_uncommitted_changes'].invoke
|
5
|
-
Rake::Task['clean:build'].invoke
|
6
|
-
Rake::Task['tidy'].invoke
|
5
|
+
Rake::Task['ios:clean:build'].invoke
|
6
|
+
Rake::Task['ios:tidy'].invoke
|
7
7
|
Rake::Task['git:check_for_uncommitted_changes'].reenable
|
8
8
|
Rake::Task['git:check_for_uncommitted_changes'].invoke
|
9
|
-
Rake::Task['specs:slim'].invoke
|
9
|
+
Rake::Task['ios:specs:slim'].invoke
|
10
10
|
puts "\n\n"
|
11
11
|
puts "👍 👍 👍 👍 👍 👍 👍 👍 👍 👍 👍 👍 "
|
12
12
|
puts "🚢 Looks like you're good to ship! 🚢 "
|
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.2
|
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-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|