-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathruku.gemspec
More file actions
31 lines (22 loc) · 981 Bytes
/
ruku.gemspec
File metadata and controls
31 lines (22 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Gem::Specification.new do |s|
s.name = 'ruku'
s.version = '0.2'
s.date = '2011-2-1'
s.platform = Gem::Platform::RUBY
s.description = 'Roku™ set-top box remote control, command line and web interfaces'
s.summary = 'Ruku provides command line and web remote control interfaces for ' +
'controlling all your Roku™ set-top boxes over a network.'
s.authors = ['Aaron Royer']
s.email = 'aaronroyer@gmail.com'
s.files = Dir['{bin/*,lib/**/*,test/**/*}'] +
%w[README.rdoc MIT-LICENSE ruku.gemspec Rakefile]
s.executables << 'ruku'
s.test_files = s.files.select {|path| path =~ /^test\/test_.*\.rb/}
s.has_rdoc = true
s.extra_rdoc_files = ['MIT-LICENSE']
s.homepage = 'http://github.com/aaronroyer/ruku'
s.rdoc_options = ["--line-numbers", "--inline-source"]
s.require_paths = ['lib']
s.add_runtime_dependency('json_pure', ['>= 1.4.6'])
s.add_development_dependency('mocha', ['>= 0.9.9'])
end