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 +4 -4
- data/lib/rake_ci_tools/runners/calabash.rb +1 -0
- data/lib/rake_ci_tools/runners/vagrant.rb +2 -2
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ea8ad9e866601c8b5f973c579b5ae305cc20980
|
|
4
|
+
data.tar.gz: 84d4921aabf0d6f5a41ee839d035e30db302c883
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bdbfe13c37dc5f1a2a6604e6abf984dbf8b26cc456faf3a28585829c0008dce1903010700f69df44dff8a3398d773ec9f3e26ff66d125cec867f7411dcacca59
|
|
7
|
+
data.tar.gz: 5f3e84e24373eca8538c86a67a2154e62fd67baff8ba35075d8975859ca97777afe1284b8e2e3fe9be0206d9cae3dd53f39d3e53bd1ca9300a6c834c4d2fb93b
|
|
@@ -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('./',
|
|
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.
|
|
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:
|
|
126
|
-
|
|
127
|
-
|
|
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: []
|