ios_toolchain 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 97f72a22613e5c4bcfe1a313980f51ca3daebf9c
4
- data.tar.gz: d850802d0f51dc85fd2615e83797b919547ed2a4
3
+ metadata.gz: 2a9993e7fb786c7859ea7816426fc8b8a54e30d9
4
+ data.tar.gz: 7ba5c05e0a9201899620f08071045ee8dc1993c3
5
5
  SHA512:
6
- metadata.gz: 4ce2d66b9f43486eea853abd3d2572e135bea580a8a2324d4c0f4aeb0054d80470e93bb1f79ff50a144a19575b60f0efb162be70f8cdb090d263148170910d60
7
- data.tar.gz: 04a9c2f9689d93a241d101d554dcd384108a25138312ed7e06e6301febf2d0e505e70b083cc3cf1fd238838c8584fc73cde66ba48228cfa5474de07e74be16df
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
@@ -2,7 +2,7 @@ include IosToolchain::Helpers
2
2
 
3
3
  namespace :ios do
4
4
  desc 'Cleans the build & resets simulator'
5
- task :clean => [:'clean:build']
5
+ task :clean => [:'ios:clean:build']
6
6
 
7
7
  desc 'Cleans the build'
8
8
  namespace :clean do
@@ -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'
@@ -1,3 +1,3 @@
1
1
  module IosToolchain
2
- VERSION = '0.2.3'
2
+ VERSION = '0.2.4'
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.3
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-17 00:00:00.000000000 Z
11
+ date: 2017-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler