usbunfreeze_web 0.0.1
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.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +54 -0
- data/Rakefile +2 -0
- data/bin/usbunfreeze_web +8 -0
- data/config.ru +2 -0
- data/config/usbunfreeze_web.yaml.example +6 -0
- data/lib/usbunfreeze_web.rb +3 -0
- data/lib/usbunfreeze_web/app/css/app.css +59 -0
- data/lib/usbunfreeze_web/server.rb +75 -0
- data/lib/usbunfreeze_web/settings.rb +12 -0
- data/lib/usbunfreeze_web/version.rb +3 -0
- data/lib/usbunfreeze_web/views/usbunfreeze.haml +22 -0
- data/usbunfreeze_web.gemspec +30 -0
- metadata +186 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 75c8a9a08b15f359319715f6d4b8164756e65a89
|
4
|
+
data.tar.gz: 17152ee39738321b2426ab281cdf36fe9e4054a0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f9a582882d4de3084d2e236cee1b73892f4c4458333ec81b8db7d7754995e142d149649256a237314fe291b91b2385aa3e19c8efcc21697ba99b60f8dc2044d5
|
7
|
+
data.tar.gz: bdd843949dad67dbd110c712cd102baaa1c629f8ac4d5b09f2e68605f5ead5680b8344efe2c9d0f8b0a6cc86de4ed88ee3570087fc77b22deb5b71ebeea09b69
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 theirix
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
# UsbunfreezeWeb
|
2
|
+
|
3
|
+
Web application for Usbunfreeze kit.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
OmniFiles is a Sinatra/Rack application and can be used as a gem or as a server in local directory.
|
8
|
+
|
9
|
+
### As a gem
|
10
|
+
|
11
|
+
1. Install a gem
|
12
|
+
|
13
|
+
gem install usbunfreeze_web
|
14
|
+
|
15
|
+
2. Point an env variable `USBUNFREEZE_WEB_SETTINGS` to location of a settings file `/path/to/settings.yaml` (see Configurarion).
|
16
|
+
|
17
|
+
3. Start an app as a Thin server
|
18
|
+
|
19
|
+
USBUNFREEZE_WEB_SETTINGS=/path/to/settings.yaml usbunfreeze_web
|
20
|
+
Of course, you can provide any additional Thin options at command line or even a config with `-C /path/to/thin.yaml`.
|
21
|
+
s
|
22
|
+
## As a rack app
|
23
|
+
|
24
|
+
OmniFiles can be started using `config.ru` with you favourite Rack server.
|
25
|
+
|
26
|
+
1. Clone a git repo
|
27
|
+
|
28
|
+
2. Install dependencies
|
29
|
+
|
30
|
+
bundle install
|
31
|
+
|
32
|
+
3. Point an env variable `USBUNFREEZE_WEB_SETTINGS` to location of a settings file `/path/to/settings.yaml` (see Configurarion).
|
33
|
+
|
34
|
+
4. Start Rack app
|
35
|
+
|
36
|
+
rackup
|
37
|
+
|
38
|
+
## Configuration
|
39
|
+
|
40
|
+
Settings file template can be found at `config/settings.yaml.example`.
|
41
|
+
|
42
|
+
Configure Amazon AWS SQS queue and place access, secret key and queue name to the config.
|
43
|
+
|
44
|
+
## Usage
|
45
|
+
|
46
|
+
Web application is configured to serve at `/usbunfreeze` for a web page and at `/usbunfreeze-assets` for assets.
|
47
|
+
Configure your HTTP server for secure proxying requests to the web application.
|
48
|
+
|
49
|
+
Use URL [http://localhost:9292/usbunfreeze](http://localhost:9292/usbunfreeze) to send a signal message to the SQS
|
50
|
+
which will be fetched by the companion application usbunfreeze_daemon.
|
51
|
+
|
52
|
+
## License information
|
53
|
+
|
54
|
+
Please consult with the LICENSE.txt for license information. It is MIT by the way.
|
data/Rakefile
ADDED
data/bin/usbunfreeze_web
ADDED
data/config.ru
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
body {
|
2
|
+
padding: 5px;
|
3
|
+
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
4
|
+
}
|
5
|
+
|
6
|
+
.button {
|
7
|
+
-moz-box-shadow:inset 0px 1px 0px 0px #cf866c;
|
8
|
+
-webkit-box-shadow:inset 0px 1px 0px 0px #cf866c;
|
9
|
+
box-shadow:inset 0px 1px 0px 0px #cf866c;
|
10
|
+
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #d0451b), color-stop(1, #bc3315));
|
11
|
+
background:-moz-linear-gradient(top, #d0451b 5%, #bc3315 100%);
|
12
|
+
background:-webkit-linear-gradient(top, #d0451b 5%, #bc3315 100%);
|
13
|
+
background:-o-linear-gradient(top, #d0451b 5%, #bc3315 100%);
|
14
|
+
background:-ms-linear-gradient(top, #d0451b 5%, #bc3315 100%);
|
15
|
+
background:linear-gradient(to bottom, #d0451b 5%, #bc3315 100%);
|
16
|
+
background-color:#d0451b;
|
17
|
+
-moz-border-radius:42px;
|
18
|
+
-webkit-border-radius:42px;
|
19
|
+
border-radius:42px;
|
20
|
+
border:1px solid #942911;
|
21
|
+
display:inline-block;
|
22
|
+
cursor:pointer;
|
23
|
+
color:#ffffff;
|
24
|
+
padding:6px 24px;
|
25
|
+
text-decoration:none;
|
26
|
+
text-shadow:0px 1px 0px #854629;
|
27
|
+
font-size:120%;
|
28
|
+
outline:0;
|
29
|
+
}
|
30
|
+
.button:hover {
|
31
|
+
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #bc3315), color-stop(1, #d0451b));
|
32
|
+
background:-moz-linear-gradient(top, #bc3315 5%, #d0451b 100%);
|
33
|
+
background:-webkit-linear-gradient(top, #bc3315 5%, #d0451b 100%);
|
34
|
+
background:-o-linear-gradient(top, #bc3315 5%, #d0451b 100%);
|
35
|
+
background:-ms-linear-gradient(top, #bc3315 5%, #d0451b 100%);
|
36
|
+
background:linear-gradient(to bottom, #bc3315 5%, #d0451b 100%);
|
37
|
+
background-color:#bc3315;
|
38
|
+
}
|
39
|
+
.button:active {
|
40
|
+
position:relative;
|
41
|
+
top:1px;
|
42
|
+
}
|
43
|
+
|
44
|
+
.flash {
|
45
|
+
position: relative;
|
46
|
+
margin-bottom: 5px;
|
47
|
+
border-radius: 3px;
|
48
|
+
padding: 8px 20px 8px 8px;
|
49
|
+
}
|
50
|
+
|
51
|
+
.flash.notice {
|
52
|
+
color: rgb(70, 136, 71);
|
53
|
+
background-color: rgba(223, 240, 216, 0.9);
|
54
|
+
}
|
55
|
+
|
56
|
+
.flash.error {
|
57
|
+
color: rgb(185, 74, 72);
|
58
|
+
background-color: rgba(242, 222, 222, 0.9);
|
59
|
+
}
|
@@ -0,0 +1,75 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'sinatra'
|
4
|
+
require 'sinatra/assetpack'
|
5
|
+
require 'sinatra/flash'
|
6
|
+
require 'uri'
|
7
|
+
require 'settingslogic'
|
8
|
+
require 'rack'
|
9
|
+
require 'haml'
|
10
|
+
require 'aws-sdk-v1'
|
11
|
+
|
12
|
+
module UsbunfreezeWeb
|
13
|
+
|
14
|
+
class App < Sinatra::Application
|
15
|
+
|
16
|
+
register Sinatra::AssetPack
|
17
|
+
assets do
|
18
|
+
css :application, [
|
19
|
+
'/usbunfreeze-assets/css/app.css'
|
20
|
+
]
|
21
|
+
serve '/usbunfreeze-assets', from: 'app'
|
22
|
+
end
|
23
|
+
|
24
|
+
enable :sessions
|
25
|
+
set :session_secret, Settings.session_secret
|
26
|
+
|
27
|
+
register Sinatra::Flash
|
28
|
+
|
29
|
+
before do
|
30
|
+
logger.info "Fired app at #{request.path_info}"
|
31
|
+
end
|
32
|
+
|
33
|
+
# GET - an index page
|
34
|
+
get '/usbunfreeze' do
|
35
|
+
|
36
|
+
haml :usbunfreeze
|
37
|
+
end
|
38
|
+
|
39
|
+
# POST - a form
|
40
|
+
post '/usbunfreeze' do
|
41
|
+
|
42
|
+
begin
|
43
|
+
send_command
|
44
|
+
flash[:notice] = "Command was sent to the notebook. Wait a few seconds."
|
45
|
+
rescue => e
|
46
|
+
flash[:error] = "Error launching a command: " + e.message
|
47
|
+
logger.error "Error: " + e.message + "\nStacktrace:\n" +
|
48
|
+
e.backtrace.map{|s| "\t"+s}.join("\n")
|
49
|
+
end
|
50
|
+
|
51
|
+
redirect to('/usbunfreeze')
|
52
|
+
end
|
53
|
+
|
54
|
+
private
|
55
|
+
|
56
|
+
def send_command
|
57
|
+
logger.info "Sending command to SQS"
|
58
|
+
|
59
|
+
sqs = AWS::SQS.new(access_key_id: Settings.sqs.access_key_id,
|
60
|
+
secret_access_key: Settings.sqs.secret_access_key)
|
61
|
+
raise 'No SQS object' unless sqs
|
62
|
+
|
63
|
+
logger.info "Get queue '#{Settings.sqs.queue_name}' ..."
|
64
|
+
q = sqs.queues.named(Settings.sqs.queue_name)
|
65
|
+
raise 'Cannot get queue' unless q
|
66
|
+
raise 'Queue does not exist' unless q.exists?
|
67
|
+
|
68
|
+
message = {message: 'unfreeze'}.to_json
|
69
|
+
m = q.send_message message
|
70
|
+
logger.info "Successfully sent id #{m.id}"
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'settingslogic'
|
2
|
+
|
3
|
+
module UsbunfreezeWeb
|
4
|
+
|
5
|
+
class Settings < Settingslogic
|
6
|
+
settings_file = (ENV['USBUNFREEZE_WEB_SETTINGS'] or '')
|
7
|
+
raise "Please specify a settings file in env USBUNFREEZE_WEB_SETTINGS" unless File.file?(settings_file)
|
8
|
+
source settings_file
|
9
|
+
namespace 'config'
|
10
|
+
load!
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
!!!
|
2
|
+
%html
|
3
|
+
%head
|
4
|
+
%title USB Unfreeze
|
5
|
+
= css :application
|
6
|
+
%meta{ :charset => "utf-8" }
|
7
|
+
%body
|
8
|
+
#container
|
9
|
+
%h1 Unfreeze your notebook
|
10
|
+
|
11
|
+
%p Recover your notebook from static shock that usually halts both keyboard and touchpad.
|
12
|
+
|
13
|
+
%p<
|
14
|
+
Send a signal to the notebook to launch the
|
15
|
+
%strong usbunfreeze
|
16
|
+
utility.
|
17
|
+
|
18
|
+
%form{:method => 'post'}
|
19
|
+
%button.button{:type => 'submit'}Unfreeze
|
20
|
+
|
21
|
+
%p
|
22
|
+
=styled_flash
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'usbunfreeze_web/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "usbunfreeze_web"
|
8
|
+
spec.version = UsbunfreezeWeb::VERSION
|
9
|
+
spec.authors = ["theirix"]
|
10
|
+
spec.email = ["theirix@gmail.com"]
|
11
|
+
spec.summary = %q{Usubunfreeze web server.}
|
12
|
+
spec.description = %q{Usubunfreeze web server.}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
spec.add_runtime_dependency "sinatra", "~> 1.4.5"
|
24
|
+
spec.add_runtime_dependency "sinatra-assetpack", "~> 0.3.3"
|
25
|
+
spec.add_runtime_dependency "haml", "~> 4.0.0"
|
26
|
+
spec.add_runtime_dependency "settingslogic", "~> 2.0.0"
|
27
|
+
spec.add_runtime_dependency "thin", "~> 1.6.0"
|
28
|
+
spec.add_runtime_dependency "sinatra-flash", "~> 0.3.0"
|
29
|
+
spec.add_runtime_dependency "aws-sdk-v1", "~> 1.60.0"
|
30
|
+
end
|
metadata
ADDED
@@ -0,0 +1,186 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: usbunfreeze_web
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- theirix
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-01-08 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.7'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.7'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: sinatra
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 1.4.5
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.4.5
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: sinatra-assetpack
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.3.3
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.3.3
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: haml
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 4.0.0
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 4.0.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: settingslogic
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 2.0.0
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 2.0.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: thin
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 1.6.0
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 1.6.0
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: sinatra-flash
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 0.3.0
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 0.3.0
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: aws-sdk-v1
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 1.60.0
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 1.60.0
|
139
|
+
description: Usubunfreeze web server.
|
140
|
+
email:
|
141
|
+
- theirix@gmail.com
|
142
|
+
executables:
|
143
|
+
- usbunfreeze_web
|
144
|
+
extensions: []
|
145
|
+
extra_rdoc_files: []
|
146
|
+
files:
|
147
|
+
- ".gitignore"
|
148
|
+
- Gemfile
|
149
|
+
- LICENSE.txt
|
150
|
+
- README.md
|
151
|
+
- Rakefile
|
152
|
+
- bin/usbunfreeze_web
|
153
|
+
- config.ru
|
154
|
+
- config/usbunfreeze_web.yaml.example
|
155
|
+
- lib/usbunfreeze_web.rb
|
156
|
+
- lib/usbunfreeze_web/app/css/app.css
|
157
|
+
- lib/usbunfreeze_web/server.rb
|
158
|
+
- lib/usbunfreeze_web/settings.rb
|
159
|
+
- lib/usbunfreeze_web/version.rb
|
160
|
+
- lib/usbunfreeze_web/views/usbunfreeze.haml
|
161
|
+
- usbunfreeze_web.gemspec
|
162
|
+
homepage: ''
|
163
|
+
licenses:
|
164
|
+
- MIT
|
165
|
+
metadata: {}
|
166
|
+
post_install_message:
|
167
|
+
rdoc_options: []
|
168
|
+
require_paths:
|
169
|
+
- lib
|
170
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
171
|
+
requirements:
|
172
|
+
- - ">="
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
version: '0'
|
175
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
176
|
+
requirements:
|
177
|
+
- - ">="
|
178
|
+
- !ruby/object:Gem::Version
|
179
|
+
version: '0'
|
180
|
+
requirements: []
|
181
|
+
rubyforge_project:
|
182
|
+
rubygems_version: 2.4.5
|
183
|
+
signing_key:
|
184
|
+
specification_version: 4
|
185
|
+
summary: Usubunfreeze web server.
|
186
|
+
test_files: []
|