high_five 0.3.13 → 0.3.14

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: 11880f58bb558fd9d63c7b7889c8be0eaf998a7d
4
- data.tar.gz: 6b56b204891ec2f281db61db2ab60eccbb746655
3
+ metadata.gz: 268b866e15618cbd95e2eba2653172044070d506
4
+ data.tar.gz: a2a2627530532f1744cd23b2ad822917fe6e25d6
5
5
  SHA512:
6
- metadata.gz: 4e4a48aa33e8f98b8e1e48c87adffef7a2a6abd736b04eb366a743101313d5b359c68c5baeeefd8d11ab9c57373402b0a7621da4027058e0c2e6383056098cef
7
- data.tar.gz: 90426b1667821561970d79fef4f1286e5953a617313600b8b43215b4af3ba28e4385fc795e20a6b910f98f6b69753a032ee5a4b5d633a405a932d09cedab9b45
6
+ metadata.gz: 2d6763ec68dcbff7b02f65f84ab463a19f24832e559d228f76b2e09a77203674ed96cbfb35f6daf25cf645692d2999f7f52f6568375a72a4122dfacdc6de2623
7
+ data.tar.gz: c035de8ba3f935ff3c67fcb10140b151c6330e68f6feb53d9aad7d598195cc36994424c9fe929ae2f0eacd2da1319fdd5c66cf5774d6c69726db6cbe6cdcb963
@@ -1,5 +1,6 @@
1
1
  require 'high_five/ios_helper'
2
2
  require 'high_five/android_helper'
3
+
3
4
  module HighFive
4
5
  module Thor
5
6
  module Tasks
@@ -79,8 +80,9 @@ module HighFive
79
80
 
80
81
  if @output_file_name
81
82
  if gradle
82
- say "copying final build #{android_path}/build/outputs/apk/android-release.apk -> #{android_path}/build/outputs/apk/#{@output_file_name}.apk"
83
- FileUtils.cp("#{android_path}/build/outputs/apk/android-release.apk", "#{android_path}/build/outputs/apk/#{@output_file_name}.apk")
83
+ apk = Dir["#{android_path}/build/outputs/apk/*-release.apk"][0]
84
+ say "copying final build #{apk} -> #{android_path}/build/outputs/apk/#{@output_file_name}.apk"
85
+ FileUtils.cp("#{apk}", "#{android_path}/build/outputs/apk/#{@output_file_name}.apk")
84
86
  else
85
87
  say "copying final build #{android_path}/bin/#{android_name}-release.apk -> #{android_path}/bin/#{@output_file_name}.apk"
86
88
  FileUtils.cp("#{android_path}/bin/#{android_name}-release.apk", "#{android_path}/bin/#{@output_file_name}.apk")
@@ -1,3 +1,3 @@
1
1
  module HighFive
2
- VERSION = "0.3.13"
2
+ VERSION = "0.3.14"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: high_five
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.13
4
+ version: 0.3.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Samson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-16 00:00:00.000000000 Z
11
+ date: 2016-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json