rake_ci_tools 0.0.3 → 0.0.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: c31c3f84945542a41aadc1be037ce954c445b0e2
4
- data.tar.gz: c055c4d3a4d947f97a8e99f522e4885625ad0abe
3
+ metadata.gz: 3ea8ad9e866601c8b5f973c579b5ae305cc20980
4
+ data.tar.gz: 84d4921aabf0d6f5a41ee839d035e30db302c883
5
5
  SHA512:
6
- metadata.gz: fdc601f13dee4b9be9c5aa99b93da55a734d1e7bbc03e74cae60a242a27499ce842c30bb626e37623e467d98775c32eae356e119ec5716f63c21b66bb0858923
7
- data.tar.gz: c644b69d7393ec6a29a55996626aaa31913e96bac1bcc32e4edd6b2321f475f92123add16ce2bb404e373abc14b7785f8377b3614e2ff6af685899a6c763666f
6
+ metadata.gz: bdbfe13c37dc5f1a2a6604e6abf984dbf8b26cc456faf3a28585829c0008dce1903010700f69df44dff8a3398d773ec9f3e26ff66d125cec867f7411dcacca59
7
+ data.tar.gz: 5f3e84e24373eca8538c86a67a2154e62fd67baff8ba35075d8975859ca97777afe1284b8e2e3fe9be0206d9cae3dd53f39d3e53bd1ca9300a6c834c4d2fb93b
@@ -5,6 +5,7 @@ module Calabash_Runner
5
5
 
6
6
  def self.reset_simulator
7
7
  sh 'calabash-ios sim reset'
8
+ close_simulator
8
9
  end
9
10
 
10
11
  def self.sim_location(bundle_id)
@@ -1,7 +1,7 @@
1
1
  module Vagrant
2
2
  def self.task(box_name, tasks=[], project_location='./')
3
3
  begin
4
- puts "Creating Vagrantbox for Process ID: $$"
4
+ puts "Creating Vagrantbox for Process ID: #{Process.pid}"
5
5
  create_box(box_name)
6
6
  copy_file_to_guest(project_location,box_name)
7
7
  tasks.each { |task| command(task,box_name) }
@@ -22,7 +22,7 @@ module Vagrant
22
22
  def self.destroy_box(box_name)
23
23
  puts "Destorying: #{box_name}"
24
24
  begin
25
- get_file_from_guest('./',"#{remoteLocation}/ci-artifacts",box_name)
25
+ get_file_from_guest('./',box_name)
26
26
  ensure
27
27
  sh "vagrant destroy -f #{box_name}"
28
28
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake_ci_tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - chris griffiths
@@ -122,9 +122,11 @@ dependencies:
122
122
  - - ~>
123
123
  - !ruby/object:Gem::Version
124
124
  version: '1.5'
125
- description: " Predined Rake tasks for building, testing and deploying xcode projects\n
126
- \ Includes Support for: - XCode: Build, Test\n - Cucumber:
127
- calabash\n - Vagrant: Run Cucumber inside Vagrantbox \n"
125
+ description: |2
126
+ Predined Rake tasks for building, testing and deploying xcode projects
127
+ Includes Support for: - XCode: Build, Test
128
+ - Cucumber: calabash
129
+ - Vagrant: Run Cucumber Tests using Vagrant
128
130
  email:
129
131
  - christopher_griffiths@hotmail.com
130
132
  executables: []