-
Notifications
You must be signed in to change notification settings - Fork 2
/
roku-packager.gemspec
24 lines (20 loc) · 991 Bytes
/
roku-packager.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'roku-packager/version'
Gem::Specification.new do |gem|
gem.name = "roku-packager"
gem.version = RokuPackager::VERSION
gem.authors = ["brookemckim"]
gem.email = ["brooke.mckim@gmail.com"]
gem.description = %q{Ruby library for packaging Roku applications. Requires a Roku in development mode and a zipped up application.}
gem.summary = %q{Package roku applications from within Ruby.}
gem.homepage = "http://github.com/brookemckim/roku-packager"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency 'rest-client', '~> 1.6.6'
gem.add_development_dependency 'mocha'
gem.add_development_dependency 'minitest'
end