pmux-gw 0.1.9 → 0.1.10
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/README.md +2 -2
- data/{examples → conf}/password +0 -0
- data/{examples → conf}/pmux-gw.conf +0 -0
- data/lib/pmux-gw/version.rb +1 -1
- data/pmux-gw.gemspec +1 -1
- data/rpm/pmux-gw.spec +3 -3
- metadata +5 -5
data/README.md
CHANGED
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
### Create an environment that can use pmux-gw
|
|
63
63
|
|
|
64
64
|
mkdir /etc/pmux-gw
|
|
65
|
-
cp <pmux-geteway-install-path>/
|
|
66
|
-
cp <pmux-geteway-install-path>/
|
|
65
|
+
cp <pmux-geteway-install-path>/conf/pmux-gw.conf /etc/pmux-gw/pmux-gw.conf
|
|
66
|
+
cp <pmux-geteway-install-path>/conf/password /etc/pmux-gw/password
|
|
67
67
|
chown -R admin:admin /etc/pmux-gw/password
|
|
68
68
|
chmod -R 600 /etc/pmux-gw/password
|
|
69
69
|
pmux-gw
|
data/{examples → conf}/password
RENAMED
|
File without changes
|
|
File without changes
|
data/lib/pmux-gw/version.rb
CHANGED
data/pmux-gw.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |gem|
|
|
|
12
12
|
gem.summary = %q{Pmux gateway server}
|
|
13
13
|
gem.homepage = "https://github.com/iij/pmux-gw"
|
|
14
14
|
|
|
15
|
-
gem.files = `find . -maxdepth 1 -name '.gitignore' -prune -o -type f -print; find {bin,lib,
|
|
15
|
+
gem.files = `find . -maxdepth 1 -name '.gitignore' -prune -o -type f -print; find {bin,lib,conf,rpm} -name '.svn' -prune -o -type f -print`.split().map{ |f| f.strip().sub("./", "") }
|
|
16
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
17
17
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
18
18
|
gem.require_paths = ["lib"]
|
data/rpm/pmux-gw.spec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
%define ruby_verid %{_ruby_verid}
|
|
6
6
|
%endif
|
|
7
7
|
%define rbname pmux-gw
|
|
8
|
-
%define version 0.1.
|
|
8
|
+
%define version 0.1.10
|
|
9
9
|
%define release 1
|
|
10
10
|
|
|
11
11
|
Summary: Pmux gateway server
|
|
@@ -93,8 +93,8 @@ cp %{SOURCE1} %{buildroot}/etc/init.d/
|
|
|
93
93
|
%{gemdir}/gems/%{rbname}-%{version}/lib/pmux-gw/static/js/jquery-ui-1.9.2.custom.js
|
|
94
94
|
%{gemdir}/gems/%{rbname}-%{version}/lib/pmux-gw/logger_wrapper.rb
|
|
95
95
|
%{gemdir}/gems/%{rbname}-%{version}/lib/pmux-gw/syslog_wrapper.rb
|
|
96
|
-
%{gemdir}/gems/%{rbname}-%{version}/
|
|
97
|
-
%{gemdir}/gems/%{rbname}-%{version}/
|
|
96
|
+
%{gemdir}/gems/%{rbname}-%{version}/conf/pmux-gw.conf
|
|
97
|
+
%{gemdir}/gems/%{rbname}-%{version}/conf/password
|
|
98
98
|
%{gemdir}/gems/%{rbname}-%{version}/rpm/pmux-gw.spec
|
|
99
99
|
%{gemdir}/gems/%{rbname}-%{version}/rpm/pmux-gw
|
|
100
100
|
%{gemdir}/gems/%{rbname}-%{version}/rpm/Makefile
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pmux-gw
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 15
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 10
|
|
10
|
+
version: 0.1.10
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Hiroyuki Kakine
|
|
@@ -170,8 +170,8 @@ files:
|
|
|
170
170
|
- lib/pmux-gw/static/js/jquery-1.8.3.js
|
|
171
171
|
- lib/pmux-gw/static/js/jquery-ui-1.9.2.custom.js
|
|
172
172
|
- lib/pmux-gw/logger_wrapper.rb
|
|
173
|
-
-
|
|
174
|
-
-
|
|
173
|
+
- conf/password
|
|
174
|
+
- conf/pmux-gw.conf
|
|
175
175
|
- rpm/Makefile
|
|
176
176
|
- rpm/pmux-gw.spec
|
|
177
177
|
- rpm/pmux-gw
|