ruby_uml_class 0.2.0 → 0.3.0
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 +4 -4
- data/README.md +45 -37
- data/bin/start_ruby_uml_class.rb +0 -0
- data/bin/start_ruby_uml_class.rbw +0 -0
- data/lib/config/setting.json +19 -19
- data/lib/config.ru +107 -107
- data/lib/create_uml_class.rb +322 -297
- data/lib/history/history.json +2 -2
- data/lib/js/main.js +463 -463
- data/lib/ruby_uml_class/version.rb +5 -5
- data/lib/start.rb +0 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 192679c66a562a5126827b090b70d5a324bef3bc2af9985f6917d7f2d1e30161
|
4
|
+
data.tar.gz: 0cb91f5cc637347a9690b33597f1fdcfbc2f5141a962d1d2520051d3b3a163b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d1e08fc73ff5a21b0bbc8d80c21c06c105324217f9b9dc38a05622afd010aacdf3f8b72a2f549feca52a8180bb3ad5e8e1f23f3ecc00c43387504793f76871c
|
7
|
+
data.tar.gz: 8f4b72c40ed3a05b55f7af17402cd0e968a5283c23dfa2230615d0448a0fd222cf640428868fd23cad2d9ed5f658bb6b370dd3de5f41897ca2b8500fab902623
|
data/README.md
CHANGED
@@ -1,37 +1,45 @@
|
|
1
|
-
# RubyUmlClass
|
2
|
-
|
3
|
-
RubyUmlClass creates a Ruby class diagram.
|
4
|
-
PlantUML and rufo commands are used to create class diagrams.
|
5
|
-
The created class diagram is displayed on the browser screen.
|
6
|
-
|
7
|
-
## Setup
|
8
|
-
for ubuntu
|
9
|
-
$ sudo apt install plantuml
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
$
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
##
|
36
|
-
|
37
|
-
|
1
|
+
# RubyUmlClass
|
2
|
+
|
3
|
+
RubyUmlClass creates a Ruby class diagram.
|
4
|
+
PlantUML and rufo commands are used to create class diagrams.
|
5
|
+
The created class diagram is displayed on the browser screen.
|
6
|
+
|
7
|
+
## Setup
|
8
|
+
for ubuntu
|
9
|
+
$ sudo apt install plantuml
|
10
|
+
|
11
|
+
for windoes
|
12
|
+
install java and PlanUML
|
13
|
+
Set java and plantuml.jar in [PlantUML Command]
|
14
|
+
PlantUML of vscode extension function is also possible
|
15
|
+
|
16
|
+
Set [RubyUmlClass=>Setting=>PlantUML Command] as follows
|
17
|
+
"java -jar C:/Users/%USERNAME%/.vscode/extensions/jebbs.plantuml-2.17.5/plantuml.jar -svg --charset UTF-8"
|
18
|
+
|
19
|
+
## Installation
|
20
|
+
|
21
|
+
Install the gem and add to the application's Gemfile by executing:
|
22
|
+
|
23
|
+
$ bundle add ruby_uml_class
|
24
|
+
|
25
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
26
|
+
|
27
|
+
$ gem install ruby_uml_class
|
28
|
+
|
29
|
+
## Usage
|
30
|
+
|
31
|
+
$ start_ruby_uml_class.rb
|
32
|
+
|
33
|
+
https://user-images.githubusercontent.com/88954426/211500980-3bb839a9-8cf5-44da-b8f9-733a87f22c96.mp4
|
34
|
+
|
35
|
+
## Development
|
36
|
+
|
37
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
38
|
+
|
39
|
+
## Contributing
|
40
|
+
|
41
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/kuwayama1971/RubyUmlClass.
|
42
|
+
|
43
|
+
## License
|
44
|
+
|
45
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/bin/start_ruby_uml_class.rb
CHANGED
File without changes
|
File without changes
|
data/lib/config/setting.json
CHANGED
@@ -1,19 +1,19 @@
|
|
1
|
-
{
|
2
|
-
"version": 0.1,
|
3
|
-
"setting_list": [
|
4
|
-
{
|
5
|
-
"name": "plantuml",
|
6
|
-
"value": "plantuml -svg --charset UTF-8",
|
7
|
-
"type": "input",
|
8
|
-
"select": "",
|
9
|
-
"description": "PlantUMLコマンド"
|
10
|
-
},
|
11
|
-
{
|
12
|
-
"name": "editor",
|
13
|
-
"value": "code",
|
14
|
-
"type": "input",
|
15
|
-
"select": "",
|
16
|
-
"description": "UMLを開くエディタ"
|
17
|
-
}
|
18
|
-
]
|
19
|
-
}
|
1
|
+
{
|
2
|
+
"version": 0.1,
|
3
|
+
"setting_list": [
|
4
|
+
{
|
5
|
+
"name": "plantuml",
|
6
|
+
"value": "plantuml -svg --charset UTF-8",
|
7
|
+
"type": "input",
|
8
|
+
"select": "",
|
9
|
+
"description": "PlantUMLコマンド"
|
10
|
+
},
|
11
|
+
{
|
12
|
+
"name": "editor",
|
13
|
+
"value": "code",
|
14
|
+
"type": "input",
|
15
|
+
"select": "",
|
16
|
+
"description": "UMLを開くエディタ"
|
17
|
+
}
|
18
|
+
]
|
19
|
+
}
|
data/lib/config.ru
CHANGED
@@ -1,107 +1,107 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
require "sinatra"
|
3
|
-
require "sinatra/contrib"
|
4
|
-
require "sinatra-websocket"
|
5
|
-
require "thin"
|
6
|
-
require "json"
|
7
|
-
|
8
|
-
require "./server"
|
9
|
-
require "./wsserver"
|
10
|
-
|
11
|
-
access_log = File.new("#{$home_dir}/logs/sinatra.log", "a+")
|
12
|
-
access_log.sync = true
|
13
|
-
use Rack::CommonLogger, access_log
|
14
|
-
|
15
|
-
get "/" do
|
16
|
-
File.read("html/index.html")
|
17
|
-
end
|
18
|
-
|
19
|
-
get "*.html" do |file|
|
20
|
-
content_type "text/html", :charset => "utf-8"
|
21
|
-
File.read "./html/#{file}.html"
|
22
|
-
end
|
23
|
-
|
24
|
-
get "/css/:name.css" do
|
25
|
-
content_type "text/css", :charset => "utf-8"
|
26
|
-
puts "css/#{params[:name]}.css"
|
27
|
-
File.read "css/#{params[:name]}.css"
|
28
|
-
end
|
29
|
-
|
30
|
-
get "/js/:name.js" do
|
31
|
-
content_type "text/javascript", :charset => "utf-8"
|
32
|
-
puts "js/#{params[:name]}.js"
|
33
|
-
File.read "js/#{params[:name]}.js"
|
34
|
-
end
|
35
|
-
|
36
|
-
get "/config/*.*" do |file, ext|
|
37
|
-
content_type "text/json", :charset => "utf-8"
|
38
|
-
puts "#{file}.#{ext}"
|
39
|
-
File.read "#{$home_dir}/config/#{file}.#{ext}"
|
40
|
-
end
|
41
|
-
|
42
|
-
post "/history/*.*" do |file, ext|
|
43
|
-
content_type "text/json", :charset => "utf-8"
|
44
|
-
puts "#{file}.#{ext}"
|
45
|
-
p = params[:param1]
|
46
|
-
begin
|
47
|
-
buf = File.read "#{$home_dir}/history/#{file}.#{ext}"
|
48
|
-
rescue
|
49
|
-
buf = ""
|
50
|
-
end
|
51
|
-
data = eval(buf)
|
52
|
-
if data != nil
|
53
|
-
if p != ""
|
54
|
-
JSON.generate data.find_all { |d| d =~ Regexp.new(p) }
|
55
|
-
else
|
56
|
-
JSON.generate data
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
60
|
-
|
61
|
-
get "/open_dialog" do
|
62
|
-
dialog_html = <<'EOS'
|
63
|
-
<!DOCTYPE html>
|
64
|
-
<html>
|
65
|
-
<head>
|
66
|
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
67
|
-
<title>Message Dialog</title>
|
68
|
-
<style type="text/css">
|
69
|
-
<!--
|
70
|
-
body {
|
71
|
-
color: #000000;
|
72
|
-
background-color: #ffffff;
|
73
|
-
overflow: hidden;
|
74
|
-
font-size: 12px;
|
75
|
-
}
|
76
|
-
-->
|
77
|
-
</style>
|
78
|
-
</head>
|
79
|
-
EOS
|
80
|
-
dialog_html += "<body>" + params["msg"] + "</body></html>"
|
81
|
-
end
|
82
|
-
|
83
|
-
map "/search" do
|
84
|
-
run Search
|
85
|
-
end
|
86
|
-
|
87
|
-
map "/wsserver" do
|
88
|
-
res = catch(:halt) do
|
89
|
-
run WsServer
|
90
|
-
end
|
91
|
-
puts res
|
92
|
-
end
|
93
|
-
|
94
|
-
configure do
|
95
|
-
set :DoNotReverseLookup, true
|
96
|
-
set :logging, true
|
97
|
-
set :default_encoding, "utf-8"
|
98
|
-
set :server, :thin
|
99
|
-
|
100
|
-
# Thread.start {
|
101
|
-
# }
|
102
|
-
|
103
|
-
end
|
104
|
-
|
105
|
-
#\ --port 35983
|
106
|
-
|
107
|
-
run Sinatra::Application
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require "sinatra"
|
3
|
+
require "sinatra/contrib"
|
4
|
+
require "sinatra-websocket"
|
5
|
+
require "thin"
|
6
|
+
require "json"
|
7
|
+
|
8
|
+
require "./server"
|
9
|
+
require "./wsserver"
|
10
|
+
|
11
|
+
access_log = File.new("#{$home_dir}/logs/sinatra.log", "a+")
|
12
|
+
access_log.sync = true
|
13
|
+
use Rack::CommonLogger, access_log
|
14
|
+
|
15
|
+
get "/" do
|
16
|
+
File.read("html/index.html")
|
17
|
+
end
|
18
|
+
|
19
|
+
get "*.html" do |file|
|
20
|
+
content_type "text/html", :charset => "utf-8"
|
21
|
+
File.read "./html/#{file}.html"
|
22
|
+
end
|
23
|
+
|
24
|
+
get "/css/:name.css" do
|
25
|
+
content_type "text/css", :charset => "utf-8"
|
26
|
+
puts "css/#{params[:name]}.css"
|
27
|
+
File.read "css/#{params[:name]}.css"
|
28
|
+
end
|
29
|
+
|
30
|
+
get "/js/:name.js" do
|
31
|
+
content_type "text/javascript", :charset => "utf-8"
|
32
|
+
puts "js/#{params[:name]}.js"
|
33
|
+
File.read "js/#{params[:name]}.js"
|
34
|
+
end
|
35
|
+
|
36
|
+
get "/config/*.*" do |file, ext|
|
37
|
+
content_type "text/json", :charset => "utf-8"
|
38
|
+
puts "#{file}.#{ext}"
|
39
|
+
File.read "#{$home_dir}/config/#{file}.#{ext}"
|
40
|
+
end
|
41
|
+
|
42
|
+
post "/history/*.*" do |file, ext|
|
43
|
+
content_type "text/json", :charset => "utf-8"
|
44
|
+
puts "#{file}.#{ext}"
|
45
|
+
p = params[:param1]
|
46
|
+
begin
|
47
|
+
buf = File.read "#{$home_dir}/history/#{file}.#{ext}"
|
48
|
+
rescue
|
49
|
+
buf = ""
|
50
|
+
end
|
51
|
+
data = eval(buf)
|
52
|
+
if data != nil
|
53
|
+
if p != ""
|
54
|
+
JSON.generate data.find_all { |d| d =~ Regexp.new(p) }
|
55
|
+
else
|
56
|
+
JSON.generate data
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
get "/open_dialog" do
|
62
|
+
dialog_html = <<'EOS'
|
63
|
+
<!DOCTYPE html>
|
64
|
+
<html>
|
65
|
+
<head>
|
66
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
67
|
+
<title>Message Dialog</title>
|
68
|
+
<style type="text/css">
|
69
|
+
<!--
|
70
|
+
body {
|
71
|
+
color: #000000;
|
72
|
+
background-color: #ffffff;
|
73
|
+
overflow: hidden;
|
74
|
+
font-size: 12px;
|
75
|
+
}
|
76
|
+
-->
|
77
|
+
</style>
|
78
|
+
</head>
|
79
|
+
EOS
|
80
|
+
dialog_html += "<body>" + params["msg"] + "</body></html>"
|
81
|
+
end
|
82
|
+
|
83
|
+
map "/search" do
|
84
|
+
run Search
|
85
|
+
end
|
86
|
+
|
87
|
+
map "/wsserver" do
|
88
|
+
res = catch(:halt) do
|
89
|
+
run WsServer
|
90
|
+
end
|
91
|
+
puts res
|
92
|
+
end
|
93
|
+
|
94
|
+
configure do
|
95
|
+
set :DoNotReverseLookup, true
|
96
|
+
set :logging, true
|
97
|
+
set :default_encoding, "utf-8"
|
98
|
+
set :server, :thin
|
99
|
+
|
100
|
+
# Thread.start {
|
101
|
+
# }
|
102
|
+
|
103
|
+
end
|
104
|
+
|
105
|
+
#\ --port 35983
|
106
|
+
|
107
|
+
run Sinatra::Application
|