archsight 0.1.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.
Files changed (122) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +24 -0
  3. data/CODE_OF_CONDUCT.md +10 -0
  4. data/CONTRIBUTING.md +186 -0
  5. data/Dockerfile +39 -0
  6. data/LICENSE.txt +201 -0
  7. data/README.md +170 -0
  8. data/SECURITY.md +27 -0
  9. data/exe/archsight +9 -0
  10. data/lib/archsight/annotations/aggregators.rb +109 -0
  11. data/lib/archsight/annotations/annotation.rb +168 -0
  12. data/lib/archsight/annotations/architecture_annotations.rb +59 -0
  13. data/lib/archsight/annotations/backup_annotations.rb +21 -0
  14. data/lib/archsight/annotations/computed.rb +264 -0
  15. data/lib/archsight/annotations/email_recipient.rb +35 -0
  16. data/lib/archsight/annotations/generated_annotations.rb +17 -0
  17. data/lib/archsight/annotations/git_annotations.rb +21 -0
  18. data/lib/archsight/annotations/relation_resolver.rb +160 -0
  19. data/lib/archsight/cli.rb +120 -0
  20. data/lib/archsight/configuration.rb +36 -0
  21. data/lib/archsight/database.rb +183 -0
  22. data/lib/archsight/documentation.rb +171 -0
  23. data/lib/archsight/graph.rb +113 -0
  24. data/lib/archsight/helpers.rb +210 -0
  25. data/lib/archsight/linter.rb +77 -0
  26. data/lib/archsight/mcp/analyze_resource_tool.rb +222 -0
  27. data/lib/archsight/mcp/base.rb +48 -0
  28. data/lib/archsight/mcp/query_tool.rb +113 -0
  29. data/lib/archsight/mcp/resource_doc_tool.rb +87 -0
  30. data/lib/archsight/mcp.rb +6 -0
  31. data/lib/archsight/query/ast.rb +279 -0
  32. data/lib/archsight/query/errors.rb +39 -0
  33. data/lib/archsight/query/evaluator.rb +707 -0
  34. data/lib/archsight/query/lexer.rb +289 -0
  35. data/lib/archsight/query/parser.rb +506 -0
  36. data/lib/archsight/query.rb +68 -0
  37. data/lib/archsight/renderer.rb +134 -0
  38. data/lib/archsight/resources/application_component.rb +346 -0
  39. data/lib/archsight/resources/application_interface.rb +54 -0
  40. data/lib/archsight/resources/application_service.rb +222 -0
  41. data/lib/archsight/resources/base.rb +300 -0
  42. data/lib/archsight/resources/business_actor.rb +195 -0
  43. data/lib/archsight/resources/business_constraint.rb +32 -0
  44. data/lib/archsight/resources/business_process.rb +37 -0
  45. data/lib/archsight/resources/business_product.rb +206 -0
  46. data/lib/archsight/resources/business_requirement.rb +56 -0
  47. data/lib/archsight/resources/compliance_evidence.rb +42 -0
  48. data/lib/archsight/resources/data_object.rb +49 -0
  49. data/lib/archsight/resources/motivation_goal.rb +37 -0
  50. data/lib/archsight/resources/motivation_outcome.rb +33 -0
  51. data/lib/archsight/resources/motivation_stakeholder.rb +38 -0
  52. data/lib/archsight/resources/strategy_capability.rb +38 -0
  53. data/lib/archsight/resources/technology_artifact.rb +154 -0
  54. data/lib/archsight/resources/technology_interface.rb +34 -0
  55. data/lib/archsight/resources/technology_node.rb +42 -0
  56. data/lib/archsight/resources/technology_service.rb +35 -0
  57. data/lib/archsight/resources/technology_system_software.rb +37 -0
  58. data/lib/archsight/resources/view.rb +51 -0
  59. data/lib/archsight/resources.rb +49 -0
  60. data/lib/archsight/template.rb +49 -0
  61. data/lib/archsight/version.rb +5 -0
  62. data/lib/archsight/web/application.rb +290 -0
  63. data/lib/archsight/web/doc/archimate.md +215 -0
  64. data/lib/archsight/web/doc/computed_annotations.md +316 -0
  65. data/lib/archsight/web/doc/icons.md +303 -0
  66. data/lib/archsight/web/doc/index.md.erb +74 -0
  67. data/lib/archsight/web/doc/modeling.md +200 -0
  68. data/lib/archsight/web/doc/search.md +227 -0
  69. data/lib/archsight/web/doc/togaf.md +255 -0
  70. data/lib/archsight/web/doc/tool.md +90 -0
  71. data/lib/archsight/web/public/css/artifact.css +985 -0
  72. data/lib/archsight/web/public/css/base.css +201 -0
  73. data/lib/archsight/web/public/css/graph.css +106 -0
  74. data/lib/archsight/web/public/css/highlight.min.css +10 -0
  75. data/lib/archsight/web/public/css/iconoir.css +22 -0
  76. data/lib/archsight/web/public/css/instance.css +329 -0
  77. data/lib/archsight/web/public/css/layout.css +421 -0
  78. data/lib/archsight/web/public/css/mermaid-layers.css +188 -0
  79. data/lib/archsight/web/public/css/pico.min.css +4 -0
  80. data/lib/archsight/web/public/favicon.ico +0 -0
  81. data/lib/archsight/web/public/img/archimate.png +0 -0
  82. data/lib/archsight/web/public/img/togaf-high-level.png +0 -0
  83. data/lib/archsight/web/public/js/graph-zoom.js +18 -0
  84. data/lib/archsight/web/public/js/highlight.min.js +3899 -0
  85. data/lib/archsight/web/public/js/htmx.min.js +1 -0
  86. data/lib/archsight/web/public/js/mermaid-init.js +88 -0
  87. data/lib/archsight/web/public/js/mermaid.min.js +2811 -0
  88. data/lib/archsight/web/public/js/sparkline.js +42 -0
  89. data/lib/archsight/web/public/js/svg-pan-zoom.min.js +3 -0
  90. data/lib/archsight/web/public/js/svg-zoom-controls.js +93 -0
  91. data/lib/archsight/web/views/index.haml +12 -0
  92. data/lib/archsight/web/views/partials/artifact/_activity.haml +55 -0
  93. data/lib/archsight/web/views/partials/artifact/_agentic.haml +25 -0
  94. data/lib/archsight/web/views/partials/artifact/_deployment.haml +29 -0
  95. data/lib/archsight/web/views/partials/artifact/_git_info.haml +16 -0
  96. data/lib/archsight/web/views/partials/artifact/_language_stats.haml +53 -0
  97. data/lib/archsight/web/views/partials/artifact/_links.haml +24 -0
  98. data/lib/archsight/web/views/partials/artifact/_project_estimate.haml +26 -0
  99. data/lib/archsight/web/views/partials/artifact/_repositories.haml +55 -0
  100. data/lib/archsight/web/views/partials/artifact/_team.haml +83 -0
  101. data/lib/archsight/web/views/partials/artifact/_workflow.haml +69 -0
  102. data/lib/archsight/web/views/partials/components/_activity.haml +37 -0
  103. data/lib/archsight/web/views/partials/components/_git.haml +17 -0
  104. data/lib/archsight/web/views/partials/components/_jira.haml +18 -0
  105. data/lib/archsight/web/views/partials/components/_languages.haml +29 -0
  106. data/lib/archsight/web/views/partials/components/_owner.haml +15 -0
  107. data/lib/archsight/web/views/partials/components/_repositories.haml +37 -0
  108. data/lib/archsight/web/views/partials/components/_status.haml +23 -0
  109. data/lib/archsight/web/views/partials/instance/_detail.haml +99 -0
  110. data/lib/archsight/web/views/partials/instance/_graph.haml +6 -0
  111. data/lib/archsight/web/views/partials/instance/_list.haml +84 -0
  112. data/lib/archsight/web/views/partials/instance/_relations.haml +43 -0
  113. data/lib/archsight/web/views/partials/instance/_requirements.haml +41 -0
  114. data/lib/archsight/web/views/partials/instance/_view_detail.haml +57 -0
  115. data/lib/archsight/web/views/partials/layout/_content.haml +40 -0
  116. data/lib/archsight/web/views/partials/layout/_error.haml +22 -0
  117. data/lib/archsight/web/views/partials/layout/_head.haml +24 -0
  118. data/lib/archsight/web/views/partials/layout/_navigation.haml +20 -0
  119. data/lib/archsight/web/views/partials/layout/_sidebar.haml +27 -0
  120. data/lib/archsight/web/views/search.haml +53 -0
  121. data/lib/archsight.rb +17 -0
  122. metadata +311 -0
@@ -0,0 +1,24 @@
1
+ %head
2
+ %meta{content: 'text/html; charset=UTF-8', 'http-equiv' => 'Content-Type'}/
3
+ %meta{charset: 'UTF-8'}/
4
+ %meta{content: 'width=device-width, initial-scale=1', name: 'viewport'}/
5
+ %title IONOS Architecture
6
+ %link{href: asset_path('/css/pico.min.css'), rel: 'stylesheet'}/
7
+ %link{href: asset_path('/css/base.css'), rel: 'stylesheet'}/
8
+ %link{href: asset_path('/css/layout.css'), rel: 'stylesheet'}/
9
+ %link{href: asset_path('/css/instance.css'), rel: 'stylesheet'}/
10
+ %link{href: asset_path('/css/artifact.css'), rel: 'stylesheet'}/
11
+ %link{href: asset_path('/css/iconoir.css'), rel: 'stylesheet'}/
12
+ %link{href: asset_path('/css/highlight.min.css'), rel: 'stylesheet'}/
13
+ %link{href: asset_path('/css/mermaid-layers.css'), rel: 'stylesheet'}/
14
+ %link{href: asset_path('/css/graph.css'), rel: 'stylesheet'}/
15
+ %script{src: asset_path('/js/htmx.min.js')}
16
+ %script{src: asset_path('/js/mermaid.min.js')}
17
+ %script{src: asset_path('/js/svg-pan-zoom.min.js')}
18
+ %script{src: asset_path('/js/svg-zoom-controls.js')}
19
+ %script{src: asset_path('/js/graph-zoom.js')}
20
+ %script{src: asset_path("/js/mermaid-init.js")}
21
+ %script{ src: asset_path("/js/highlight.min.js") }
22
+ %script{ src: asset_path("/js/sparkline.js") }
23
+ :javascript
24
+ hljs.highlightAll();
@@ -0,0 +1,20 @@
1
+ %nav.container-fluid
2
+ %ul
3
+ %li
4
+ %strong
5
+ %a{href: "/"}
6
+ %i.iconoir-home
7
+ Home
8
+ %li
9
+ %a{href: "/reload?redirect=#{request.path_info}"}
10
+ %i.iconoir-reload-window
11
+ Reload
12
+ %ul
13
+ %li.search-container
14
+ %a.search-help{ href: "/doc/index", "hx-get": "/doc/index", "hx-target": ".content", "hx-swap": "innerHTML", "hx-push-url": "true", title: "Help" }
15
+ %i.iconoir-help-circle
16
+ %input#search-input.search{ placeholder: "Query: kubernetes, activity/status == \"active\"", name: "q",
17
+ "hx-post": "/search", "hx-swap": "innerHTML", "hx-target": ".content",
18
+ "hx-indicator": ".search-spinner" }
19
+ %span.search-spinner.htmx-indicator
20
+ %i.iconoir-refresh.spinning
@@ -0,0 +1,27 @@
1
+ %aside.sidebar
2
+ .sidebar-section
3
+ %h4.sidebar-heading
4
+ %i.iconoir-folder
5
+ Kinds
6
+ %nav.kind-filter
7
+ %ul
8
+ - Archsight::Resources.each do |item|
9
+ %li
10
+ %a{href: "/kinds/#{item}", 'aria-current': (item.to_s == @kind ? "page" : nil)}
11
+ %span.kind-name= item
12
+ %span.kind-count= db.instances_by_kind(item).each_key.size
13
+ - if @kind
14
+ - filters = db.filters_for_kind(@kind)
15
+ - if filters.any?
16
+ .sidebar-section
17
+ %h4.sidebar-heading
18
+ %i.iconoir-filter
19
+ Filters
20
+ %nav.annotation-filter
21
+ - filters.each do |annotation, values|
22
+ .filter-group
23
+ .filter-label{title: annotation.description}= annotation.title
24
+ .filter-chips
25
+ - values.each do |value|
26
+ %a.filter-chip{ **filter_link_attrs(annotation.key, value, "==", @kind) }
27
+ = value
@@ -0,0 +1,53 @@
1
+ - if @query_error
2
+ .search-error
3
+ .search-error-header
4
+ %i.iconoir-warning-triangle
5
+ Query Syntax Error
6
+ .search-error-message= @query_error.message
7
+ .search-error-query
8
+ Query:
9
+ %code= @q
10
+
11
+ %article.search-context
12
+ %header
13
+ %h3 Search Query
14
+ .search-query-display
15
+ %p.query-item
16
+ %span.label Query:
17
+ %code.query-value= @q
18
+ - if @tag
19
+ - new_method = @method == '==' ? '!=' : '=='
20
+ - title_text = @method == '==' ? "Switch to != (NOT equal)" : "Switch to == (equal)"
21
+ - attrs = filter_link_attrs(@tag, @value, new_method, @kind).merge(title: title_text)
22
+ %a.link-light.query-toggle{**attrs}
23
+ %i.iconoir-flip
24
+ - if @kind
25
+ %p.query-item
26
+ %span.label Kind:
27
+ %code.kind-value= @kind
28
+ - unless @query_error
29
+ %p.query-item
30
+ %span.label Results:
31
+ %span.result-count
32
+ = (@instances || []).size
33
+ = (@instances || []).size == 1 ? "item" : "items"
34
+ %p.query-item
35
+ %span.label Time:
36
+ %span.search-time= "#{@search_time_ms} ms"
37
+
38
+ - unless @query_error
39
+ %article.search-results
40
+ %header
41
+ %h3 Results
42
+ - if (@instances || []).empty?
43
+ %p
44
+ %em No results found
45
+ - else
46
+ != haml :"partials/instance/_list", locals: { instances: @instances, omit_kind: !@kind.nil? }
47
+
48
+ -# Out-of-band swap to update search input with current query
49
+ %input#search-input.search{ placeholder: "Query: kubernetes, activity/status == \"active\"", name: "q",
50
+ value: @q,
51
+ "hx-post": "/search", "hx-swap": "innerHTML", "hx-target": ".content",
52
+ "hx-indicator": ".search-spinner",
53
+ "hx-swap-oob": "true" }
data/lib/archsight.rb ADDED
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "archsight/version"
4
+ require_relative "archsight/configuration"
5
+ require_relative "archsight/helpers"
6
+ require_relative "archsight/graph"
7
+ require_relative "archsight/renderer"
8
+ require_relative "archsight/database"
9
+ require_relative "archsight/linter"
10
+ require_relative "archsight/template"
11
+ require_relative "archsight/documentation"
12
+ require_relative "archsight/query"
13
+ require_relative "archsight/resources"
14
+
15
+ module Archsight
16
+ class Error < StandardError; end
17
+ end
metadata ADDED
@@ -0,0 +1,311 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: archsight
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Vincent Landgraf
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2026-01-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: fast-mcp
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: haml
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '6.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '6.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: kramdown
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: kramdown-parser-gfm
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: puma
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '6.0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '6.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rackup
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '2.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'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rexml
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '3.0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '3.0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rouge
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 4.7.0
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: 4.7.0
125
+ - !ruby/object:Gem::Dependency
126
+ name: sinatra
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '4.0'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '4.0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: thor
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '1.0'
146
+ type: :runtime
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '1.0'
153
+ description: Bringing enterprise architecture into focus. A Ruby gem for modeling,
154
+ querying, and visualizing enterprise architecture using ArchiMate-inspired YAML
155
+ resources with GraphViz visualization.
156
+ email:
157
+ - vincent.landgraf@ionos.com
158
+ executables:
159
+ - archsight
160
+ extensions: []
161
+ extra_rdoc_files: []
162
+ files:
163
+ - CHANGELOG.md
164
+ - CODE_OF_CONDUCT.md
165
+ - CONTRIBUTING.md
166
+ - Dockerfile
167
+ - LICENSE.txt
168
+ - README.md
169
+ - SECURITY.md
170
+ - exe/archsight
171
+ - lib/archsight.rb
172
+ - lib/archsight/annotations/aggregators.rb
173
+ - lib/archsight/annotations/annotation.rb
174
+ - lib/archsight/annotations/architecture_annotations.rb
175
+ - lib/archsight/annotations/backup_annotations.rb
176
+ - lib/archsight/annotations/computed.rb
177
+ - lib/archsight/annotations/email_recipient.rb
178
+ - lib/archsight/annotations/generated_annotations.rb
179
+ - lib/archsight/annotations/git_annotations.rb
180
+ - lib/archsight/annotations/relation_resolver.rb
181
+ - lib/archsight/cli.rb
182
+ - lib/archsight/configuration.rb
183
+ - lib/archsight/database.rb
184
+ - lib/archsight/documentation.rb
185
+ - lib/archsight/graph.rb
186
+ - lib/archsight/helpers.rb
187
+ - lib/archsight/linter.rb
188
+ - lib/archsight/mcp.rb
189
+ - lib/archsight/mcp/analyze_resource_tool.rb
190
+ - lib/archsight/mcp/base.rb
191
+ - lib/archsight/mcp/query_tool.rb
192
+ - lib/archsight/mcp/resource_doc_tool.rb
193
+ - lib/archsight/query.rb
194
+ - lib/archsight/query/ast.rb
195
+ - lib/archsight/query/errors.rb
196
+ - lib/archsight/query/evaluator.rb
197
+ - lib/archsight/query/lexer.rb
198
+ - lib/archsight/query/parser.rb
199
+ - lib/archsight/renderer.rb
200
+ - lib/archsight/resources.rb
201
+ - lib/archsight/resources/application_component.rb
202
+ - lib/archsight/resources/application_interface.rb
203
+ - lib/archsight/resources/application_service.rb
204
+ - lib/archsight/resources/base.rb
205
+ - lib/archsight/resources/business_actor.rb
206
+ - lib/archsight/resources/business_constraint.rb
207
+ - lib/archsight/resources/business_process.rb
208
+ - lib/archsight/resources/business_product.rb
209
+ - lib/archsight/resources/business_requirement.rb
210
+ - lib/archsight/resources/compliance_evidence.rb
211
+ - lib/archsight/resources/data_object.rb
212
+ - lib/archsight/resources/motivation_goal.rb
213
+ - lib/archsight/resources/motivation_outcome.rb
214
+ - lib/archsight/resources/motivation_stakeholder.rb
215
+ - lib/archsight/resources/strategy_capability.rb
216
+ - lib/archsight/resources/technology_artifact.rb
217
+ - lib/archsight/resources/technology_interface.rb
218
+ - lib/archsight/resources/technology_node.rb
219
+ - lib/archsight/resources/technology_service.rb
220
+ - lib/archsight/resources/technology_system_software.rb
221
+ - lib/archsight/resources/view.rb
222
+ - lib/archsight/template.rb
223
+ - lib/archsight/version.rb
224
+ - lib/archsight/web/application.rb
225
+ - lib/archsight/web/doc/archimate.md
226
+ - lib/archsight/web/doc/computed_annotations.md
227
+ - lib/archsight/web/doc/icons.md
228
+ - lib/archsight/web/doc/index.md.erb
229
+ - lib/archsight/web/doc/modeling.md
230
+ - lib/archsight/web/doc/search.md
231
+ - lib/archsight/web/doc/togaf.md
232
+ - lib/archsight/web/doc/tool.md
233
+ - lib/archsight/web/public/css/artifact.css
234
+ - lib/archsight/web/public/css/base.css
235
+ - lib/archsight/web/public/css/graph.css
236
+ - lib/archsight/web/public/css/highlight.min.css
237
+ - lib/archsight/web/public/css/iconoir.css
238
+ - lib/archsight/web/public/css/instance.css
239
+ - lib/archsight/web/public/css/layout.css
240
+ - lib/archsight/web/public/css/mermaid-layers.css
241
+ - lib/archsight/web/public/css/pico.min.css
242
+ - lib/archsight/web/public/favicon.ico
243
+ - lib/archsight/web/public/img/archimate.png
244
+ - lib/archsight/web/public/img/togaf-high-level.png
245
+ - lib/archsight/web/public/js/graph-zoom.js
246
+ - lib/archsight/web/public/js/highlight.min.js
247
+ - lib/archsight/web/public/js/htmx.min.js
248
+ - lib/archsight/web/public/js/mermaid-init.js
249
+ - lib/archsight/web/public/js/mermaid.min.js
250
+ - lib/archsight/web/public/js/sparkline.js
251
+ - lib/archsight/web/public/js/svg-pan-zoom.min.js
252
+ - lib/archsight/web/public/js/svg-zoom-controls.js
253
+ - lib/archsight/web/views/index.haml
254
+ - lib/archsight/web/views/partials/artifact/_activity.haml
255
+ - lib/archsight/web/views/partials/artifact/_agentic.haml
256
+ - lib/archsight/web/views/partials/artifact/_deployment.haml
257
+ - lib/archsight/web/views/partials/artifact/_git_info.haml
258
+ - lib/archsight/web/views/partials/artifact/_language_stats.haml
259
+ - lib/archsight/web/views/partials/artifact/_links.haml
260
+ - lib/archsight/web/views/partials/artifact/_project_estimate.haml
261
+ - lib/archsight/web/views/partials/artifact/_repositories.haml
262
+ - lib/archsight/web/views/partials/artifact/_team.haml
263
+ - lib/archsight/web/views/partials/artifact/_workflow.haml
264
+ - lib/archsight/web/views/partials/components/_activity.haml
265
+ - lib/archsight/web/views/partials/components/_git.haml
266
+ - lib/archsight/web/views/partials/components/_jira.haml
267
+ - lib/archsight/web/views/partials/components/_languages.haml
268
+ - lib/archsight/web/views/partials/components/_owner.haml
269
+ - lib/archsight/web/views/partials/components/_repositories.haml
270
+ - lib/archsight/web/views/partials/components/_status.haml
271
+ - lib/archsight/web/views/partials/instance/_detail.haml
272
+ - lib/archsight/web/views/partials/instance/_graph.haml
273
+ - lib/archsight/web/views/partials/instance/_list.haml
274
+ - lib/archsight/web/views/partials/instance/_relations.haml
275
+ - lib/archsight/web/views/partials/instance/_requirements.haml
276
+ - lib/archsight/web/views/partials/instance/_view_detail.haml
277
+ - lib/archsight/web/views/partials/layout/_content.haml
278
+ - lib/archsight/web/views/partials/layout/_error.haml
279
+ - lib/archsight/web/views/partials/layout/_head.haml
280
+ - lib/archsight/web/views/partials/layout/_navigation.haml
281
+ - lib/archsight/web/views/partials/layout/_sidebar.haml
282
+ - lib/archsight/web/views/search.haml
283
+ homepage: https://github.com/ionos-cloud/archsight
284
+ licenses:
285
+ - Apache-2.0
286
+ metadata:
287
+ homepage_uri: https://github.com/ionos-cloud/archsight
288
+ source_code_uri: https://github.com/ionos-cloud/archsight
289
+ changelog_uri: https://github.com/ionos-cloud/archsight/blob/main/CHANGELOG.md
290
+ bug_tracker_uri: https://github.com/ionos-cloud/archsight/issues
291
+ rubygems_mfa_required: 'true'
292
+ post_install_message:
293
+ rdoc_options: []
294
+ require_paths:
295
+ - lib
296
+ required_ruby_version: !ruby/object:Gem::Requirement
297
+ requirements:
298
+ - - ">="
299
+ - !ruby/object:Gem::Version
300
+ version: 3.2.0
301
+ required_rubygems_version: !ruby/object:Gem::Requirement
302
+ requirements:
303
+ - - ">="
304
+ - !ruby/object:Gem::Version
305
+ version: '0'
306
+ requirements: []
307
+ rubygems_version: 3.4.1
308
+ signing_key:
309
+ specification_version: 4
310
+ summary: Enterprise architecture visualization and modeling tool
311
+ test_files: []