roku_builder 4.24.1 → 4.24.3

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
  SHA256:
3
- metadata.gz: 5c8cbcadc9f204bd809c6d0b42ef03c0fe462209c493381d654db1b6c4f51b17
4
- data.tar.gz: 51b96420ec3a859d6af35a16989bc5560bd6987c84e8ee3c8bbea4b3159aacbf
3
+ metadata.gz: f7bfa0cdacb03d4e7ac4c9e488d9c2ceea14a2c41171539e7e7ccef1a69a4123
4
+ data.tar.gz: 99efccf23099acad6c86b8f55d850f75fb9a9a55f6e1e482902fe3d57b78ed72
5
5
  SHA512:
6
- metadata.gz: 2247b8355b001e0151255e0ffb45032b92ff1f5adb6e5ec6c98be8013c142d859d689cd056b1e757cda82445bf77cae19b9ab0775419d2d95041a105cc7643ca
7
- data.tar.gz: 3459696d4a13f4faf6000c3b2a17a82e392e3935adcee2a77bb312e1ed06fcdbf1ac6e57b4486198128e26235846126fc3508bd61427d52f3a42ffddb536a990
6
+ metadata.gz: 6793d4333664300a0a3920679470f414fe3adfc189190882b519c638a7c6d469e53681d07cb16ee712ca22ddaa8678acc3e37da81ed6ccb183c225bdba77325e
7
+ data.tar.gz: b65cb206582a70bb2c5ed2d6453104c574b2c103dac5957d277ba21f2b6e48816dceab0e8b991d20c3b47b4f7636dc10a5b499bbd8521223f9a37516d0a1918f
@@ -15,9 +15,9 @@ module RokuBuilder
15
15
  cleanup_uuid_script
16
16
  end
17
17
  def test_sideload
18
- output = `#{roku} --sideload --stage production`
18
+ output = `#{roku} --sideload --stage production -V`
19
19
  assert_log @uuid
20
- refute_match(/WARN: Missing File/, output)
20
+ refute_match(/INFO: Missing File/, output)
21
21
  end
22
22
  def test_delete
23
23
  `#{roku} --sideload --working`
@@ -17,8 +17,8 @@ module RokuBuilder
17
17
  def test_package
18
18
  target = File.join(testfiles_path(PackagerIntergrationTest), "pkg.pkg")
19
19
  FileUtils.rm(target) if File.exist?(target)
20
- output = `#{roku} --package --stage production --out #{target}`
21
- refute_match(/WARN: Missing File/, output)
20
+ output = `#{roku} --package --stage production --out #{target} -V`
21
+ refute_match(/INFO: Missing File/, output)
22
22
  wait_assert {File.exist?(target)}
23
23
  refute File.exist?(target+".zip")
24
24
  FileUtils.rm(target) if File.exist?(target)
@@ -27,7 +27,7 @@ module RokuBuilder
27
27
  target = File.join(testfiles_path(PackagerIntergrationTest), "pkg.pkg")
28
28
  FileUtils.rm(target) if File.exist?(target)
29
29
  output = `#{roku} --package --stage production --out #{target} -V`
30
- refute_match(/WARN: Missing File/, output)
30
+ refute_match(/INFO: Missing File/, output)
31
31
  assert_match(/#{target}/, output)
32
32
  wait_assert {File.exist?(target)}
33
33
  refute File.exist?(target+".zip")
@@ -48,7 +48,6 @@ module RokuBuilder
48
48
 
49
49
  # Sideload an app onto a roku device
50
50
  def sideload(options:)
51
- delete(options: options, ignoreFailure: true)
52
51
  did_build = false
53
52
  unless options[:in]
54
53
  did_build = true
@@ -173,7 +172,7 @@ module RokuBuilder
173
172
  @logger.warn "Ignored file with invalid Roku filetype " + File.basename(diskFilePath)
174
173
  end
175
174
  else
176
- @logger.warn "Missing File: #{diskFilePath}"
175
+ @logger.info "Missing File: #{diskFilePath}"
177
176
  end
178
177
  end
179
178
  end
@@ -2,5 +2,5 @@
2
2
 
3
3
  module RokuBuilder
4
4
  # Version of the RokuBuilder Gem
5
- VERSION = "4.24.1"
5
+ VERSION = "4.24.3"
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roku_builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.24.1
4
+ version: 4.24.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - greeneca
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-06 00:00:00.000000000 Z
11
+ date: 2022-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubyzip
@@ -633,7 +633,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
633
633
  - !ruby/object:Gem::Version
634
634
  version: '0'
635
635
  requirements: []
636
- rubygems_version: 3.2.3
636
+ rubygems_version: 3.3.4
637
637
  signing_key:
638
638
  specification_version: 4
639
639
  summary: Build Tool for Roku Apps