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: 96f09cafc150fd3031e1cbaa1a8e3414d232d0a3
4
- data.tar.gz: 74bd08da8c8ef0c5a38a1cf187d78d8c0b9f54da
3
+ metadata.gz: f84794867ff43111e9f296a22f96c1ffca6f803b
4
+ data.tar.gz: 86b174307c5d06bd0dcd8c5a654f8c4afe244836
5
5
  SHA512:
6
- metadata.gz: 3d6485ccb2974ca5740ea053f0a4a54c71fff1c03323aa7248da806bfda43cdbf82b895291da18e42dbca15ac18fef9c4e378cacf3744653ace1e607ab2ba4ff
7
- data.tar.gz: 60a6535a8360da247e09831997ce5831401ac5943bb0e6aa4cc51aba999d91c3b4a68a331d7b6f44341a8c0c867f8f38b4209f1e4d2df5631b71ce5957efe427
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! 🚢 "
@@ -1,3 +1,3 @@
1
1
  module IosToolchain
2
- VERSION = "0.2.1"
2
+ VERSION = "0.2.2"
3
3
  end
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.1
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-15 00:00:00.000000000 Z
11
+ date: 2017-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler