yolo 1.3.2 → 1.3.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +3 -3
- data/lib/yolo/tasks/ios/calabash.rb +0 -1
- data/lib/yolo/tools/github.rb +2 -2
- metadata +6 -7
data/README.md
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
yolo
|
2
2
|
====
|
3
3
|
|
4
|
-
[![
|
5
|
-
[![
|
6
|
-
[![
|
4
|
+
[![Code Climate](https://codeclimate.com/github/alexefish/yolo.png)](https://codeclimate.com/github/alexefish/yolo)
|
5
|
+
[![Coverage Status](https://coveralls.io/repos/alexefish/yolo/badge.png?branch=master)](https://coveralls.io/r/alexefish/yolo)
|
6
|
+
[![Build Status](https://travis-ci.org/alexefish/yolo.png)](https://travis-ci.org/alexefish/yolo)
|
7
7
|
|
8
8
|
yolo is a RubyGem which provides a Ruby interface to Continuous Integration build tools. yolo is currently geared towards the Xcode toolchain and iOS development.
|
9
9
|
|
data/lib/yolo/tools/github.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
require "zip"
|
1
|
+
require "zip/zip"
|
2
2
|
require "net/http"
|
3
3
|
require "uri"
|
4
4
|
require 'json'
|
@@ -117,7 +117,7 @@ module Yolo
|
|
117
117
|
archive = File.join(bundle,File.basename(bundle))+'.zip'
|
118
118
|
FileUtils.rm archive, :force=>true
|
119
119
|
|
120
|
-
Zip::
|
120
|
+
Zip::ZipFile.open(archive, 'w') do |zipfile|
|
121
121
|
Dir["#{bundle}/**/**"].reject{|f|f==archive}.each do |file|
|
122
122
|
zipfile.add(file.sub(bundle+'/',''),file)
|
123
123
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yolo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -80,17 +80,17 @@ dependencies:
|
|
80
80
|
requirement: !ruby/object:Gem::Requirement
|
81
81
|
none: false
|
82
82
|
requirements:
|
83
|
-
- -
|
83
|
+
- - ~>
|
84
84
|
- !ruby/object:Gem::Version
|
85
|
-
version:
|
85
|
+
version: 0.9.9
|
86
86
|
type: :runtime
|
87
87
|
prerelease: false
|
88
88
|
version_requirements: !ruby/object:Gem::Requirement
|
89
89
|
none: false
|
90
90
|
requirements:
|
91
|
-
- -
|
91
|
+
- - ~>
|
92
92
|
- !ruby/object:Gem::Version
|
93
|
-
version:
|
93
|
+
version: 0.9.9
|
94
94
|
description: yolo is a RubyGem which provides a Ruby interface to Continuous Integration
|
95
95
|
build tools. yolo is currently geared towards the Xcode toolchain and iOS development.
|
96
96
|
email: alex@alexefish.com
|
@@ -159,8 +159,7 @@ files:
|
|
159
159
|
- spec/tools/ios/xcode_spec.rb
|
160
160
|
- README.md
|
161
161
|
homepage: http://rubygems.org/gems/yolo
|
162
|
-
licenses:
|
163
|
-
- MIT
|
162
|
+
licenses: []
|
164
163
|
post_install_message:
|
165
164
|
rdoc_options: []
|
166
165
|
require_paths:
|