ncXBMC 0.3.1 → 0.3.2
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.
- data/bin/ncxbmc.rb +1 -1
- metadata +27 -13
data/bin/ncxbmc.rb
CHANGED
|
@@ -685,7 +685,7 @@ inputopts = OptionParser.new do |opts|
|
|
|
685
685
|
options[:version] = v
|
|
686
686
|
end
|
|
687
687
|
opts.on("-p", "--port [NUMBER]", Integer,"Port used (default %d)" % NCXMBC_DEFAULTPORT) do |port|
|
|
688
|
-
options[:port] = port
|
|
688
|
+
options[:port] = port.to_s
|
|
689
689
|
end
|
|
690
690
|
opts.on("-U", "--user [NAME]", String, "Username used for authentication") do |name|
|
|
691
691
|
options[:user] = name
|
metadata
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ncXBMC
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
prerelease: false
|
|
5
|
+
segments:
|
|
6
|
+
- 0
|
|
7
|
+
- 3
|
|
8
|
+
- 2
|
|
9
|
+
version: 0.3.2
|
|
5
10
|
platform: ruby
|
|
6
11
|
authors:
|
|
7
12
|
- Cedric TESSIER
|
|
@@ -9,29 +14,36 @@ autorequire:
|
|
|
9
14
|
bindir: bin
|
|
10
15
|
cert_chain: []
|
|
11
16
|
|
|
12
|
-
date: 2010-
|
|
17
|
+
date: 2010-03-14 00:00:00 +01:00
|
|
13
18
|
default_executable: ncxbmc.rb
|
|
14
19
|
dependencies:
|
|
15
20
|
- !ruby/object:Gem::Dependency
|
|
16
21
|
name: ncurses
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
prerelease: false
|
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
20
24
|
requirements:
|
|
21
25
|
- - ">="
|
|
22
26
|
- !ruby/object:Gem::Version
|
|
27
|
+
segments:
|
|
28
|
+
- 0
|
|
29
|
+
- 9
|
|
23
30
|
version: "0.9"
|
|
24
|
-
|
|
31
|
+
type: :runtime
|
|
32
|
+
version_requirements: *id001
|
|
25
33
|
- !ruby/object:Gem::Dependency
|
|
26
34
|
name: ruby-xbmc
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
35
|
+
prerelease: false
|
|
36
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
30
37
|
requirements:
|
|
31
38
|
- - ">="
|
|
32
39
|
- !ruby/object:Gem::Version
|
|
40
|
+
segments:
|
|
41
|
+
- 0
|
|
42
|
+
- 1
|
|
43
|
+
- 2
|
|
33
44
|
version: 0.1.2
|
|
34
|
-
|
|
45
|
+
type: :runtime
|
|
46
|
+
version_requirements: *id002
|
|
35
47
|
description: |-
|
|
36
48
|
ncXBMC is a remote XBMC client, with an ncurses interface, which aims to provide a full control of the music player over a local network.
|
|
37
49
|
|
|
@@ -59,18 +71,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
59
71
|
requirements:
|
|
60
72
|
- - ">="
|
|
61
73
|
- !ruby/object:Gem::Version
|
|
74
|
+
segments:
|
|
75
|
+
- 0
|
|
62
76
|
version: "0"
|
|
63
|
-
version:
|
|
64
77
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
65
78
|
requirements:
|
|
66
79
|
- - ">="
|
|
67
80
|
- !ruby/object:Gem::Version
|
|
81
|
+
segments:
|
|
82
|
+
- 0
|
|
68
83
|
version: "0"
|
|
69
|
-
version:
|
|
70
84
|
requirements: []
|
|
71
85
|
|
|
72
86
|
rubyforge_project:
|
|
73
|
-
rubygems_version: 1.3.
|
|
87
|
+
rubygems_version: 1.3.6
|
|
74
88
|
signing_key:
|
|
75
89
|
specification_version: 3
|
|
76
90
|
summary: ncXBMC is a remote XBMC client, with an ncurses interface
|