roku-packager 0.0.1 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  Roku Packager is a ruby library for uploading and packaging Roku
4
4
  applications. Normally this interaction has to be done through the
5
- clunky Roku web GUI. Given a Roku with the installer enabled and a compiled zip
5
+ clunky Roku web GUI. Given an installer enabled Roku and a compiled zip
6
6
  of your code you can pass it to Roku Packager and it will return the url
7
- to dowload the pkg file that is ready for upload to roku.com.
7
+ to download the pkg file that is ready for upload to roku.com.
8
8
 
9
9
  [![BuildStatus](https://travis-ci.org/brookemckim/roku-packager.png)](https://travis-ci.org/brookemckim/roku-packager)
10
10
  [![CodeClimate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/brookemckim/roku-packager)
@@ -4,7 +4,7 @@ require 'roku-packager/packager'
4
4
 
5
5
  module RokuPackager
6
6
  class Client
7
- def initialize(development_roku_ip, logger = NullLogger)
7
+ def initialize(development_roku_ip, logger = NullLogger.new)
8
8
  @host = development_roku_ip
9
9
  @logger = logger
10
10
  end
@@ -26,7 +26,7 @@ module RokuPackager
26
26
  end
27
27
 
28
28
  class NullLogger
29
- def info
29
+ def info(*args)
30
30
  end
31
31
  end
32
32
  end
@@ -1,3 +1,3 @@
1
1
  module RokuPackager
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
10
10
  gem.email = ["brooke.mckim@gmail.com"]
11
11
  gem.description = %q{Ruby library for packaging Roku applications. Requires a Roku in development mode and a zipped up application.}
12
12
  gem.summary = %q{Package roku applications from within Ruby.}
13
- gem.homepage = ""
13
+ gem.homepage = "http://github.com/brookemckim/roku-packager"
14
14
 
15
15
  gem.files = `git ls-files`.split($/)
16
16
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roku-packager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-15 00:00:00.000000000 Z
12
+ date: 2012-11-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rest-client
@@ -86,7 +86,7 @@ files:
86
86
  - spec/roku-packager/packager_spec.rb
87
87
  - spec/roku-packager/uploader_spec.rb
88
88
  - spec/spec_helper.rb
89
- homepage: ''
89
+ homepage: http://github.com/brookemckim/roku-packager
90
90
  licenses: []
91
91
  post_install_message:
92
92
  rdoc_options: []