fastlane-plugin-aws_s3 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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34762e703a271a5a7c6bb83c46cf4ff573022361
|
4
|
+
data.tar.gz: f5f73379b195b3e0a6092f5cc0e821330056e191
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e1f1776a28b17c3f959f384c745d1b1aa5c6795e46b3cd2e1c77e7ae8831fa44a0a702e687d773f6382a3238d8d1422a102afee1bef9ba908786b76f48019b1
|
7
|
+
data.tar.gz: bf4674db918fd75567b69d6910ca7e78f7da7e19af8e7ad37febbb10f70bebc3cefe59f1e8e787df0e57ac4a4516a029c619a67e0d0612a1e5ef27c85a6b8d46
|
@@ -2,6 +2,7 @@
|
|
2
2
|
require 'fastlane/erb_template_helper'
|
3
3
|
include ERB::Util
|
4
4
|
require 'ostruct'
|
5
|
+
require 'cgi'
|
5
6
|
|
6
7
|
module Fastlane
|
7
8
|
module Actions
|
@@ -122,11 +123,11 @@ module Fastlane
|
|
122
123
|
build_num = info['CFBundleVersion']
|
123
124
|
bundle_id = info['CFBundleIdentifier']
|
124
125
|
bundle_version = info['CFBundleShortVersionString']
|
125
|
-
title = info['CFBundleName']
|
126
|
+
title = CGI.escapeHTML(info['CFBundleName'])
|
126
127
|
full_version = "#{bundle_version}.#{build_num}"
|
127
128
|
|
128
129
|
# Creating plist and html names
|
129
|
-
plist_file_name ||= "#{url_part}#{title.delete(' ')}.plist"
|
130
|
+
plist_file_name ||= "#{url_part}#{URI.escape(title.delete(' '))}.plist"
|
130
131
|
|
131
132
|
html_file_name ||= "index.html"
|
132
133
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-aws_s3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Holtz
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk
|