scarpe 0.3.0 → 0.5.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/.cursor/rules/commit-style-preferences.mdc +72 -0
- data/.cursor/rules/component_context.mdc +82 -0
- data/.cursor/rules/debug-failed-tests.mdc +100 -0
- data/.cursor/rules/display_service_context.mdc +80 -0
- data/.cursor/rules/event_handling_context.mdc +100 -0
- data/.cursor/rules/git-pager-handling.mdc +64 -0
- data/.cursor/rules/lacci-context.mdc +52 -0
- data/.cursor/rules/scarpe_design_context.mdc +46 -0
- data/.cursor/rules/shoes_compatibility_context.mdc +75 -0
- data/.cursor/rules/timeout_context.mdc +78 -0
- data/.cursor/rules/update_lacci_and_wv.mdc +8 -0
- data/.cursor/rules/what_is_scarpe.mdc +22 -0
- data/.cursor/rules/writing-new-rules.mdc +73 -0
- data/CHANGELOG.md +46 -5
- data/CLAUDE.md +223 -0
- data/Gemfile +2 -2
- data/Gemfile.lock +85 -55
- data/LICENSE.txt +7 -1
- data/README.md +80 -20
- data/Rakefile +73 -14
- data/docs/SCARPE_FEATURES.md +38 -0
- data/docs/_config.yml +13 -0
- data/docs/calzini_components_and_updates.md +78 -0
- data/docs/display_service_separation.md +39 -0
- data/docs/documentation.md +43 -0
- data/docs/event_loops.md +66 -0
- data/docs/image.png +0 -0
- data/docs/index.md +118 -0
- data/docs/lacci.md +121 -0
- data/docs/scarpe_shoes_incompatibilities.md +71 -0
- data/docs/shoes_and_display_events.md +55 -0
- data/docs/shoes_implementations.md +79 -0
- data/docs/static/manual.md +5 -0
- data/docs/static/scarpe-logo.png +0 -0
- data/docs/timeouts_and_handlers.md +66 -0
- data/docs/web_archaeology.md +76 -0
- data/examples/Edit_box_Styles.rb +8 -0
- data/examples/Kerning.rb +7 -0
- data/examples/background_with_image.rb +14 -5
- data/examples/bloopsaphone/working/feepogram.rb +1 -1
- data/examples/bloopsaphone/working/le_dance_des_rubis.rb +135 -0
- data/examples/bloopsaphone/working/pixel_dreams_in_ruby.rb +131 -0
- data/examples/bloopsaphone/working/type_rebellion.rb +157 -0
- data/examples/border.rb +11 -0
- data/examples/check.rb +2 -0
- data/examples/download_and_show_image.rb +3 -0
- data/examples/flags/finland.rb +15 -0
- data/examples/flags/italy.rb +11 -0
- data/examples/flags/mauritius.rb +14 -0
- data/examples/font_family.rb +17 -0
- data/examples/font_shorthand.rb +9 -0
- data/examples/gen.rb +4 -0
- data/examples/internal_link_navigation.rb +19 -0
- data/examples/legacy/not_checked/shoes-manual/append.rb +10 -0
- data/examples/legacy/not_checked/shoes-manual/background_change.rb +12 -0
- data/examples/legacy/not_checked/shoes-manual/background_pattern.rb +5 -0
- data/examples/legacy/not_checked/shoes-manual/basic_app.rb +8 -0
- data/examples/legacy/not_checked/shoes-manual/border.rb +9 -0
- data/examples/legacy/not_checked/shoes-manual/builtins/FONTS.rb +5 -0
- data/examples/legacy/not_checked/shoes-manual/builtins/ask.rb +2 -0
- data/examples/legacy/not_checked/shoes-manual/builtins/ask_color.rb +5 -0
- data/examples/legacy/not_checked/shoes-manual/builtins/ask_open_file.rb +5 -0
- data/examples/legacy/not_checked/shoes-manual/builtins/ask_save_folder.rb +2 -0
- data/examples/legacy/not_checked/shoes-manual/builtins/confirm.rb +4 -0
- data/examples/legacy/not_checked/shoes-manual/builtins/debug.rb +2 -0
- data/examples/legacy/not_checked/shoes-manual/builtins/info.rb +3 -0
- data/examples/legacy/not_checked/shoes-manual/button.rb +9 -0
- data/examples/legacy/not_checked/shoes-manual/clear.rb +7 -0
- data/examples/legacy/not_checked/shoes-manual/custom_header.rb +13 -0
- data/examples/legacy/not_checked/shoes-manual/displace.rb +14 -0
- data/examples/legacy/not_checked/shoes-manual/edit_box.rb +8 -0
- data/examples/legacy/not_checked/shoes-manual/fill_pattern.rb +5 -0
- data/examples/legacy/not_checked/shoes-manual/fonts.rb +7 -0
- data/examples/legacy/not_checked/shoes-manual/gutter.rb +6 -0
- data/examples/legacy/not_checked/shoes-manual/image_web.rb +4 -0
- data/examples/legacy/not_checked/shoes-manual/keypress.rb +7 -0
- data/examples/legacy/not_checked/shoes-manual/list_box.rb +10 -0
- data/examples/legacy/not_checked/shoes-manual/motion.rb +10 -0
- data/examples/legacy/not_checked/shoes-manual/mouse.rb +8 -0
- data/examples/legacy/not_checked/shoes-manual/move.rb +14 -0
- data/examples/legacy/not_checked/shoes-manual/nested_ovals.rb +8 -0
- data/examples/legacy/not_checked/shoes-manual/oval.rb +7 -0
- data/examples/legacy/not_checked/shoes-manual/ovals.rb +6 -0
- data/examples/legacy/not_checked/shoes-manual/ovals_image.rb +8 -0
- data/examples/legacy/not_checked/shoes-manual/prepend.rb +7 -0
- data/examples/legacy/not_checked/shoes-manual/progress_bar.rb +10 -0
- data/examples/legacy/not_checked/shoes-manual/radio.rb +18 -0
- data/examples/legacy/not_checked/shoes-manual/radio_alternative_1.rb +7 -0
- data/examples/legacy/not_checked/shoes-manual/radio_alternative_2.rb +9 -0
- data/examples/legacy/not_checked/shoes-manual/rotate_rectangle.rb +6 -0
- data/examples/legacy/not_checked/shoes-manual/shape.rb +11 -0
- data/examples/legacy/not_checked/shoes-manual/static/avatar.png +0 -0
- data/examples/legacy/not_checked/shoes-manual/stroke.rb +5 -0
- data/examples/legacy/not_checked/shoes-manual/style.rb +3 -0
- data/examples/legacy/not_checked/shoes-manual/style_alternative_1.rb +4 -0
- data/examples/legacy/not_checked/shoes-manual/style_alternative_2.rb +5 -0
- data/examples/legacy/not_checked/shoes-manual/style_length.rb +5 -0
- data/examples/legacy/not_checked/shoes-manual/timer.rb +6 -0
- data/examples/legacy/not_checked/shoes-manual/trigger_window.rb +8 -0
- data/examples/legacy/not_checked/shoes-manual/window_owner.rb +8 -0
- data/examples/legacy/working/shoes_manual/alert_button.rb +2 -0
- data/examples/legacy/working/shoes_manual/animate.rb +7 -0
- data/examples/legacy/working/shoes_manual/background_para.rb +4 -0
- data/examples/legacy/working/shoes_manual/button_alternative.rb +7 -0
- data/examples/legacy/working/shoes_manual/checkbox.rb +17 -0
- data/examples/legacy/working/shoes_manual/download.rb +12 -0
- data/examples/legacy/working/shoes_manual/edit_box.rb +6 -0
- data/examples/legacy/working/shoes_manual/editline.rb +7 -0
- data/examples/legacy/working/shoes_manual/fixed_height.rb +8 -0
- data/examples/legacy/working/shoes_manual/fixed_width.rb +12 -0
- data/examples/legacy/working/shoes_manual/image.rb +5 -0
- data/examples/legacy/working/shoes_manual/instance_variable_check.rb +10 -0
- data/examples/legacy/working/shoes_manual/message.rb +18 -0
- data/examples/legacy/working/shoes_manual/rectangle.rb +6 -0
- data/examples/legacy/working/shoes_manual/save_download.rb +12 -0
- data/examples/legacy/working/shoes_manual/self_check.rb +10 -0
- data/examples/legacy/working/shoes_manual/stack.rb +7 -0
- data/examples/legacy/working/shoes_manual/style_info.rb +8 -0
- data/examples/legacy/working/shoes_manual/utf8_support.rb +8 -0
- data/examples/legacy/working/shoes_manual/width.rb +4 -0
- data/examples/local_assets/multi_image.rb +5 -0
- data/examples/local_assets/small.png +0 -0
- data/examples/local_fonts.rb +3 -0
- data/examples/margin.rb +13 -0
- data/examples/margin_check.rb +27 -0
- data/examples/oval-with-kwargs.rb +3 -0
- data/examples/oval.rb +26 -0
- data/examples/page_navigation_single_app.rb +42 -0
- data/examples/para_font_styles.rb +17 -0
- data/examples/para_font_variant.rb +6 -0
- data/examples/para_fontweight.rb +13 -0
- data/examples/parse_xl_funnies.rb +3 -0
- data/examples/rect.rb +1 -1
- data/examples/scarpe_ext.rb +3 -0
- data/examples/shapes/star.rb +1 -3
- data/examples/shoes_subclass_app.rb +25 -0
- data/examples/spacing.rb +1 -1
- data/examples/span.rb +4 -2
- data/examples/url_routing_example.rb +67 -0
- data/lacci/Gemfile +0 -2
- data/lacci/Gemfile.lock +4 -32
- data/lacci/lacci.gemspec +3 -3
- data/lacci/lib/lacci/scarpe_cli.rb +0 -1
- data/lacci/lib/lacci/version.rb +1 -1
- data/lacci/lib/scarpe/niente/app.rb +12 -1
- data/lacci/lib/scarpe/niente/display_service.rb +5 -1
- data/lacci/lib/scarpe/niente/drawable.rb +2 -0
- data/lacci/lib/scarpe/niente/shoes_spec.rb +10 -5
- data/lacci/lib/scarpe/niente.rb +15 -2
- data/lacci/lib/shoes/app.rb +204 -105
- data/lacci/lib/shoes/constants.rb +24 -2
- data/lacci/lib/shoes/display_service.rb +43 -4
- data/lacci/lib/shoes/drawable.rb +326 -36
- data/lacci/lib/shoes/drawables/arc.rb +4 -26
- data/lacci/lib/shoes/drawables/arrow.rb +3 -23
- data/lacci/lib/shoes/drawables/border.rb +28 -0
- data/lacci/lib/shoes/drawables/button.rb +5 -21
- data/lacci/lib/shoes/drawables/check.rb +7 -3
- data/lacci/lib/shoes/drawables/document_root.rb +4 -4
- data/lacci/lib/shoes/drawables/edit_box.rb +6 -5
- data/lacci/lib/shoes/drawables/edit_line.rb +5 -4
- data/lacci/lib/shoes/drawables/flow.rb +4 -6
- data/lacci/lib/shoes/drawables/font_helper.rb +62 -0
- data/lacci/lib/shoes/drawables/image.rb +2 -2
- data/lacci/lib/shoes/drawables/line.rb +3 -6
- data/lacci/lib/shoes/drawables/link.rb +16 -9
- data/lacci/lib/shoes/drawables/list_box.rb +8 -5
- data/lacci/lib/shoes/drawables/oval.rb +48 -0
- data/lacci/lib/shoes/drawables/para.rb +106 -18
- data/lacci/lib/shoes/drawables/progress.rb +2 -1
- data/lacci/lib/shoes/drawables/radio.rb +5 -3
- data/lacci/lib/shoes/drawables/rect.rb +7 -6
- data/lacci/lib/shoes/drawables/shape.rb +4 -3
- data/lacci/lib/shoes/drawables/slot.rb +102 -9
- data/lacci/lib/shoes/drawables/stack.rb +7 -12
- data/lacci/lib/shoes/drawables/star.rb +9 -31
- data/lacci/lib/shoes/drawables/text_drawable.rb +93 -34
- data/lacci/lib/shoes/drawables/video.rb +3 -2
- data/lacci/lib/shoes/drawables/widget.rb +9 -4
- data/lacci/lib/shoes/drawables.rb +2 -1
- data/lacci/lib/shoes/errors.rb +13 -3
- data/lacci/lib/shoes/margin_helper.rb +79 -0
- data/lacci/lib/shoes.rb +98 -20
- data/lacci/test/.gitignore +1 -0
- data/lacci/test/test_draw_context.rb +167 -0
- data/lacci/test/test_font_helper.rb +57 -0
- data/lacci/test/test_helper.rb +31 -4
- data/lacci/test/test_lacci.rb +93 -6
- data/lacci/test/test_margin_helper.rb +82 -0
- data/lacci/test/test_niente_test_infra.rb +40 -0
- data/lacci/test/test_oval.rb +82 -0
- data/lacci/test/test_parenting.rb +140 -0
- data/lacci/test/test_shoes_errors.rb +15 -13
- data/lacci/test/test_text_drawables.rb +23 -0
- data/lib/scarpe/assets.rb +19 -0
- data/lib/scarpe/cats_cradle.rb +57 -98
- data/lib/scarpe/shoes_spec.rb +24 -44
- data/lib/scarpe/version.rb +1 -1
- data/lib/scarpe/wv/app.rb +1 -0
- data/lib/scarpe/wv/arc.rb +0 -4
- data/lib/scarpe/wv/border.rb +15 -0
- data/lib/scarpe/wv/control_interface.rb +2 -10
- data/lib/scarpe/wv/document_root.rb +2 -2
- data/lib/scarpe/wv/drawable.rb +6 -40
- data/lib/scarpe/wv/edit_box.rb +4 -1
- data/lib/scarpe/wv/edit_line.rb +4 -1
- data/lib/scarpe/wv/image.rb +2 -5
- data/lib/scarpe/wv/link.rb +4 -2
- data/lib/scarpe/wv/oval.rb +13 -0
- data/lib/scarpe/wv/para.rb +1 -0
- data/lib/scarpe/wv/scarpe_extensions.rb +8 -0
- data/lib/scarpe/wv/shape.rb +10 -5
- data/lib/scarpe/wv/text_drawable.rb +72 -14
- data/lib/scarpe/wv/web_wrangler.rb +33 -11
- data/lib/scarpe/wv/webview_local_display.rb +6 -2
- data/lib/scarpe/wv.rb +16 -2
- data/scarpe-components/Gemfile +4 -3
- data/scarpe-components/Gemfile.lock +6 -37
- data/scarpe-components/README.md +2 -2
- data/scarpe-components/assets/bootstrap-themes/bootstrap-cerulean.css +12229 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-cosmo.css +11810 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-cyborg.css +12210 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-darkly.css +12153 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-flatly.css +12126 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-icons.min.css +5 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-journal.css +12099 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-litera.css +12211 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-lumen.css +12369 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-lux.css +11928 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-materia.css +13184 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-minty.css +12177 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-morph.css +12750 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-pulse.css +11890 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-quartz.css +12622 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-sandstone.css +12201 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-simplex.css +12186 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-sketchy.css +12451 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-slate.css +12492 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-solar.css +12149 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-spacelab.css +12266 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-superhero.css +12216 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-united.css +12077 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-vapor.css +12549 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-yeti.css +12325 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap-zephyr.css +12283 -0
- data/scarpe-components/assets/bootstrap-themes/bootstrap.bundle.min.js +7 -0
- data/scarpe-components/lib/scarpe/components/asset_server.rb +219 -0
- data/scarpe-components/lib/scarpe/components/base64.rb +22 -0
- data/scarpe-components/lib/scarpe/components/calzini/{art_widgets.rb → art_drawables.rb} +42 -18
- data/scarpe-components/lib/scarpe/components/calzini/border.rb +38 -0
- data/scarpe-components/lib/scarpe/components/calzini/button.rb +6 -8
- data/scarpe-components/lib/scarpe/components/calzini/misc.rb +14 -16
- data/scarpe-components/lib/scarpe/components/calzini/para.rb +218 -11
- data/scarpe-components/lib/scarpe/components/calzini/slots.rb +16 -60
- data/scarpe-components/lib/scarpe/components/calzini.rb +88 -1
- data/scarpe-components/lib/scarpe/components/errors.rb +4 -0
- data/scarpe-components/lib/scarpe/components/html.rb +4 -1
- data/scarpe-components/lib/scarpe/components/minitest_export_reporter.rb +11 -3
- data/scarpe-components/lib/scarpe/components/minitest_result.rb +41 -0
- data/scarpe-components/lib/scarpe/components/port_helpers.rb +30 -0
- data/scarpe-components/lib/scarpe/components/print_logger.rb +17 -2
- data/scarpe-components/lib/scarpe/components/process_helpers.rb +37 -0
- data/scarpe-components/lib/scarpe/components/segmented_file_loader.rb +1 -1
- data/scarpe-components/lib/scarpe/components/tiranti.rb +42 -100
- data/scarpe-components/lib/scarpe/components/unit_test_helpers.rb +3 -1
- data/scarpe-components/lib/scarpe/components/version.rb +1 -1
- data/scarpe-components/scarpe-components.gemspec +1 -1
- data/scarpe-components/test/assets/big-image.png +0 -0
- data/scarpe-components/test/assets/big-stylesheet.css +497 -0
- data/scarpe-components/test/assets/little-image.png +0 -0
- data/scarpe-components/test/assets/little-stylesheet.css +1 -0
- data/scarpe-components/test/calzini/test_calzini_art_drawables.rb +7 -7
- data/scarpe-components/test/calzini/test_calzini_button.rb +7 -5
- data/scarpe-components/test/calzini/test_calzini_misc.rb +9 -9
- data/scarpe-components/test/calzini/test_calzini_para.rb +6 -9
- data/scarpe-components/test/calzini/test_calzini_slots.rb +12 -57
- data/scarpe-components/test/calzini/test_calzini_text_drawables.rb +83 -18
- data/scarpe-components/test/calzini/test_various.rb +133 -0
- data/scarpe-components/test/test_asset_server.rb +72 -0
- data/scarpe-components/test/test_components.rb +31 -2
- data/scarpe-components/test/test_helper.rb +0 -1
- data/scarpe-components/test/test_minitest_result.rb +7 -0
- data/scarpe-components/test/test_port_helpers.rb +12 -0
- data/scarpe-components/test/test_segmented_app_files.rb +2 -0
- data/tasks/check_html_fixtures.rb +140 -0
- data/tasks/regenerate_html_fixtures.rb +104 -0
- data/templates/class_template_with_shapes.erb +0 -11
- metadata +225 -39
- data/.rubocop.yml +0 -88
- data/lacci/lib/scarpe/niente/logger.rb +0 -29
- data/lacci/lib/shoes/drawables/span.rb +0 -27
- data/lacci/lib/shoes/spacing.rb +0 -9
- data/lib/scarpe/evented_assertions.rb +0 -121
- data/lib/scarpe/wv/span.rb +0 -44
- data/scarpe-components/lib/scarpe/components/calzini/text_widgets.rb +0 -65
- /data/examples/legacy/{not_checked → working}/shoes3-tests/editline/editline.rb +0 -0
metadata
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: scarpe
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marco Concetto Rudilosso
|
|
8
8
|
- Noah Gibbs
|
|
9
|
-
|
|
9
|
+
- Nicholas Schwaderer
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
|
-
name:
|
|
15
|
+
name: base64
|
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
requirements:
|
|
18
18
|
- - ">="
|
|
@@ -25,76 +25,90 @@ dependencies:
|
|
|
25
25
|
- - ">="
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
27
|
version: '0'
|
|
28
|
+
- !ruby/object:Gem::Dependency
|
|
29
|
+
name: fastimage
|
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
|
31
|
+
requirements:
|
|
32
|
+
- - "~>"
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: 2.2.7
|
|
35
|
+
type: :runtime
|
|
36
|
+
prerelease: false
|
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
38
|
+
requirements:
|
|
39
|
+
- - "~>"
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: 2.2.7
|
|
28
42
|
- !ruby/object:Gem::Dependency
|
|
29
43
|
name: nokogiri
|
|
30
44
|
requirement: !ruby/object:Gem::Requirement
|
|
31
45
|
requirements:
|
|
32
|
-
- - "
|
|
46
|
+
- - "~>"
|
|
33
47
|
- !ruby/object:Gem::Version
|
|
34
|
-
version:
|
|
48
|
+
version: 1.15.2
|
|
35
49
|
type: :runtime
|
|
36
50
|
prerelease: false
|
|
37
51
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
52
|
requirements:
|
|
39
|
-
- - "
|
|
53
|
+
- - "~>"
|
|
40
54
|
- !ruby/object:Gem::Version
|
|
41
|
-
version:
|
|
55
|
+
version: 1.15.2
|
|
42
56
|
- !ruby/object:Gem::Dependency
|
|
43
57
|
name: sqlite3
|
|
44
58
|
requirement: !ruby/object:Gem::Requirement
|
|
45
59
|
requirements:
|
|
46
|
-
- - "
|
|
60
|
+
- - "~>"
|
|
47
61
|
- !ruby/object:Gem::Version
|
|
48
|
-
version:
|
|
62
|
+
version: 1.6.3
|
|
49
63
|
type: :runtime
|
|
50
64
|
prerelease: false
|
|
51
65
|
version_requirements: !ruby/object:Gem::Requirement
|
|
52
66
|
requirements:
|
|
53
|
-
- - "
|
|
67
|
+
- - "~>"
|
|
54
68
|
- !ruby/object:Gem::Version
|
|
55
|
-
version:
|
|
69
|
+
version: 1.6.3
|
|
56
70
|
- !ruby/object:Gem::Dependency
|
|
57
|
-
name:
|
|
71
|
+
name: webrick
|
|
58
72
|
requirement: !ruby/object:Gem::Requirement
|
|
59
73
|
requirements:
|
|
60
|
-
- - "
|
|
74
|
+
- - "~>"
|
|
61
75
|
- !ruby/object:Gem::Version
|
|
62
|
-
version:
|
|
76
|
+
version: 1.7.0
|
|
63
77
|
type: :runtime
|
|
64
78
|
prerelease: false
|
|
65
79
|
version_requirements: !ruby/object:Gem::Requirement
|
|
66
80
|
requirements:
|
|
67
|
-
- - "
|
|
81
|
+
- - "~>"
|
|
68
82
|
- !ruby/object:Gem::Version
|
|
69
|
-
version:
|
|
83
|
+
version: 1.7.0
|
|
70
84
|
- !ruby/object:Gem::Dependency
|
|
71
|
-
name:
|
|
85
|
+
name: lacci
|
|
72
86
|
requirement: !ruby/object:Gem::Requirement
|
|
73
87
|
requirements:
|
|
74
|
-
- - "
|
|
88
|
+
- - "~>"
|
|
75
89
|
- !ruby/object:Gem::Version
|
|
76
|
-
version:
|
|
90
|
+
version: 0.4.0
|
|
77
91
|
type: :runtime
|
|
78
92
|
prerelease: false
|
|
79
93
|
version_requirements: !ruby/object:Gem::Requirement
|
|
80
94
|
requirements:
|
|
81
|
-
- - "
|
|
95
|
+
- - "~>"
|
|
82
96
|
- !ruby/object:Gem::Version
|
|
83
|
-
version:
|
|
97
|
+
version: 0.4.0
|
|
84
98
|
- !ruby/object:Gem::Dependency
|
|
85
|
-
name:
|
|
99
|
+
name: scarpe-components
|
|
86
100
|
requirement: !ruby/object:Gem::Requirement
|
|
87
101
|
requirements:
|
|
88
102
|
- - "~>"
|
|
89
103
|
- !ruby/object:Gem::Version
|
|
90
|
-
version:
|
|
104
|
+
version: 0.4.0
|
|
91
105
|
type: :runtime
|
|
92
106
|
prerelease: false
|
|
93
107
|
version_requirements: !ruby/object:Gem::Requirement
|
|
94
108
|
requirements:
|
|
95
109
|
- - "~>"
|
|
96
110
|
- !ruby/object:Gem::Version
|
|
97
|
-
version:
|
|
111
|
+
version: 0.4.0
|
|
98
112
|
- !ruby/object:Gem::Dependency
|
|
99
113
|
name: logging
|
|
100
114
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -123,20 +137,33 @@ dependencies:
|
|
|
123
137
|
- - "~>"
|
|
124
138
|
- !ruby/object:Gem::Version
|
|
125
139
|
version: 0.1.1
|
|
126
|
-
description:
|
|
127
140
|
email:
|
|
128
141
|
- marcoc.r@outlook.com
|
|
129
142
|
- the.codefolio.guy@gmail.com
|
|
143
|
+
- nicholas.schwaderer@gmail.com
|
|
130
144
|
executables:
|
|
131
145
|
- scarpe
|
|
132
146
|
extensions: []
|
|
133
147
|
extra_rdoc_files: []
|
|
134
148
|
files:
|
|
135
|
-
- ".
|
|
149
|
+
- ".cursor/rules/commit-style-preferences.mdc"
|
|
150
|
+
- ".cursor/rules/component_context.mdc"
|
|
151
|
+
- ".cursor/rules/debug-failed-tests.mdc"
|
|
152
|
+
- ".cursor/rules/display_service_context.mdc"
|
|
153
|
+
- ".cursor/rules/event_handling_context.mdc"
|
|
154
|
+
- ".cursor/rules/git-pager-handling.mdc"
|
|
155
|
+
- ".cursor/rules/lacci-context.mdc"
|
|
156
|
+
- ".cursor/rules/scarpe_design_context.mdc"
|
|
157
|
+
- ".cursor/rules/shoes_compatibility_context.mdc"
|
|
158
|
+
- ".cursor/rules/timeout_context.mdc"
|
|
159
|
+
- ".cursor/rules/update_lacci_and_wv.mdc"
|
|
160
|
+
- ".cursor/rules/what_is_scarpe.mdc"
|
|
161
|
+
- ".cursor/rules/writing-new-rules.mdc"
|
|
136
162
|
- ".ruby-version"
|
|
137
163
|
- ".vscode/extensions.json"
|
|
138
164
|
- ".yardopts"
|
|
139
165
|
- CHANGELOG.md
|
|
166
|
+
- CLAUDE.md
|
|
140
167
|
- CODE_OF_CONDUCT.md
|
|
141
168
|
- CONTRIBUTING.md
|
|
142
169
|
- Gemfile
|
|
@@ -147,6 +174,18 @@ files:
|
|
|
147
174
|
- bin/console
|
|
148
175
|
- bin/setup
|
|
149
176
|
- dev.yml
|
|
177
|
+
- docs/SCARPE_FEATURES.md
|
|
178
|
+
- docs/_config.yml
|
|
179
|
+
- docs/calzini_components_and_updates.md
|
|
180
|
+
- docs/display_service_separation.md
|
|
181
|
+
- docs/documentation.md
|
|
182
|
+
- docs/event_loops.md
|
|
183
|
+
- docs/image.png
|
|
184
|
+
- docs/index.md
|
|
185
|
+
- docs/lacci.md
|
|
186
|
+
- docs/scarpe_shoes_incompatibilities.md
|
|
187
|
+
- docs/shoes_and_display_events.md
|
|
188
|
+
- docs/shoes_implementations.md
|
|
150
189
|
- docs/static/PKGBUILD
|
|
151
190
|
- docs/static/Shoes.icns
|
|
152
191
|
- docs/static/avatar.png
|
|
@@ -195,6 +234,7 @@ files:
|
|
|
195
234
|
- docs/static/menu-left.png
|
|
196
235
|
- docs/static/menu-right.png
|
|
197
236
|
- docs/static/menu-top.png
|
|
237
|
+
- docs/static/scarpe-logo.png
|
|
198
238
|
- docs/static/shoes-dmg.jpg
|
|
199
239
|
- docs/static/shoes-icon-blue.png
|
|
200
240
|
- docs/static/shoes-icon.png
|
|
@@ -209,9 +249,13 @@ files:
|
|
|
209
249
|
- docs/static/stubs/shoes-stub-inject.exe
|
|
210
250
|
- docs/static/stubs/shoes-stub.exe
|
|
211
251
|
- docs/static/tutor-back.png
|
|
252
|
+
- docs/timeouts_and_handlers.md
|
|
253
|
+
- docs/web_archaeology.md
|
|
212
254
|
- docs/yard/catscradle.md
|
|
213
255
|
- docs/yard/template/default/fulldoc/html/setup.rb
|
|
214
256
|
- docs/yard/template/default/layout/html/setup.rb
|
|
257
|
+
- examples/Edit_box_Styles.rb
|
|
258
|
+
- examples/Kerning.rb
|
|
215
259
|
- examples/animate.rb
|
|
216
260
|
- examples/arrow.rb
|
|
217
261
|
- examples/background_with_image.rb
|
|
@@ -222,9 +266,13 @@ files:
|
|
|
222
266
|
- examples/bloopsaphone/working/bloopsaphone_theme_song_by_why.rb
|
|
223
267
|
- examples/bloopsaphone/working/bronx_army_knife.rb
|
|
224
268
|
- examples/bloopsaphone/working/feepogram.rb
|
|
269
|
+
- examples/bloopsaphone/working/le_dance_des_rubis.rb
|
|
225
270
|
- examples/bloopsaphone/working/morning_serenity.rb
|
|
271
|
+
- examples/bloopsaphone/working/pixel_dreams_in_ruby.rb
|
|
226
272
|
- examples/bloopsaphone/working/simpsons_theme_song_by_why.rb
|
|
227
273
|
- examples/bloopsaphone/working/tune_cheeky_drat.rb
|
|
274
|
+
- examples/bloopsaphone/working/type_rebellion.rb
|
|
275
|
+
- examples/border.rb
|
|
228
276
|
- examples/btn_tooltip.rb
|
|
229
277
|
- examples/button.rb
|
|
230
278
|
- examples/button_alert.rb
|
|
@@ -239,7 +287,12 @@ files:
|
|
|
239
287
|
- examples/download_and_show_image.rb
|
|
240
288
|
- examples/edit_box.rb
|
|
241
289
|
- examples/edit_line.rb
|
|
290
|
+
- examples/flags/finland.rb
|
|
291
|
+
- examples/flags/italy.rb
|
|
292
|
+
- examples/flags/mauritius.rb
|
|
242
293
|
- examples/flow.rb
|
|
294
|
+
- examples/font_family.rb
|
|
295
|
+
- examples/font_shorthand.rb
|
|
243
296
|
- examples/fonts.rb
|
|
244
297
|
- examples/gen.rb
|
|
245
298
|
- examples/get_headers.rb
|
|
@@ -250,6 +303,7 @@ files:
|
|
|
250
303
|
- examples/image/image_size.rb
|
|
251
304
|
- examples/image/image_with_position_and_size.rb
|
|
252
305
|
- examples/info.rb
|
|
306
|
+
- examples/internal_link_navigation.rb
|
|
253
307
|
- examples/legacy/README.md
|
|
254
308
|
- examples/legacy/not_checked/expert/colours.rb
|
|
255
309
|
- examples/legacy/not_checked/expert/curve-animation.rb
|
|
@@ -375,6 +429,53 @@ files:
|
|
|
375
429
|
- examples/legacy/not_checked/shoes-contrib/styles/para-style-method.rb
|
|
376
430
|
- examples/legacy/not_checked/shoes-dep-samples/expert-game-of-life.rb
|
|
377
431
|
- examples/legacy/not_checked/shoes-dep-samples/expert-othello.rb
|
|
432
|
+
- examples/legacy/not_checked/shoes-manual/append.rb
|
|
433
|
+
- examples/legacy/not_checked/shoes-manual/background_change.rb
|
|
434
|
+
- examples/legacy/not_checked/shoes-manual/background_pattern.rb
|
|
435
|
+
- examples/legacy/not_checked/shoes-manual/basic_app.rb
|
|
436
|
+
- examples/legacy/not_checked/shoes-manual/border.rb
|
|
437
|
+
- examples/legacy/not_checked/shoes-manual/builtins/FONTS.rb
|
|
438
|
+
- examples/legacy/not_checked/shoes-manual/builtins/ask.rb
|
|
439
|
+
- examples/legacy/not_checked/shoes-manual/builtins/ask_color.rb
|
|
440
|
+
- examples/legacy/not_checked/shoes-manual/builtins/ask_open_file.rb
|
|
441
|
+
- examples/legacy/not_checked/shoes-manual/builtins/ask_save_folder.rb
|
|
442
|
+
- examples/legacy/not_checked/shoes-manual/builtins/confirm.rb
|
|
443
|
+
- examples/legacy/not_checked/shoes-manual/builtins/debug.rb
|
|
444
|
+
- examples/legacy/not_checked/shoes-manual/builtins/info.rb
|
|
445
|
+
- examples/legacy/not_checked/shoes-manual/button.rb
|
|
446
|
+
- examples/legacy/not_checked/shoes-manual/clear.rb
|
|
447
|
+
- examples/legacy/not_checked/shoes-manual/custom_header.rb
|
|
448
|
+
- examples/legacy/not_checked/shoes-manual/displace.rb
|
|
449
|
+
- examples/legacy/not_checked/shoes-manual/edit_box.rb
|
|
450
|
+
- examples/legacy/not_checked/shoes-manual/fill_pattern.rb
|
|
451
|
+
- examples/legacy/not_checked/shoes-manual/fonts.rb
|
|
452
|
+
- examples/legacy/not_checked/shoes-manual/gutter.rb
|
|
453
|
+
- examples/legacy/not_checked/shoes-manual/image_web.rb
|
|
454
|
+
- examples/legacy/not_checked/shoes-manual/keypress.rb
|
|
455
|
+
- examples/legacy/not_checked/shoes-manual/list_box.rb
|
|
456
|
+
- examples/legacy/not_checked/shoes-manual/motion.rb
|
|
457
|
+
- examples/legacy/not_checked/shoes-manual/mouse.rb
|
|
458
|
+
- examples/legacy/not_checked/shoes-manual/move.rb
|
|
459
|
+
- examples/legacy/not_checked/shoes-manual/nested_ovals.rb
|
|
460
|
+
- examples/legacy/not_checked/shoes-manual/oval.rb
|
|
461
|
+
- examples/legacy/not_checked/shoes-manual/ovals.rb
|
|
462
|
+
- examples/legacy/not_checked/shoes-manual/ovals_image.rb
|
|
463
|
+
- examples/legacy/not_checked/shoes-manual/prepend.rb
|
|
464
|
+
- examples/legacy/not_checked/shoes-manual/progress_bar.rb
|
|
465
|
+
- examples/legacy/not_checked/shoes-manual/radio.rb
|
|
466
|
+
- examples/legacy/not_checked/shoes-manual/radio_alternative_1.rb
|
|
467
|
+
- examples/legacy/not_checked/shoes-manual/radio_alternative_2.rb
|
|
468
|
+
- examples/legacy/not_checked/shoes-manual/rotate_rectangle.rb
|
|
469
|
+
- examples/legacy/not_checked/shoes-manual/shape.rb
|
|
470
|
+
- examples/legacy/not_checked/shoes-manual/static/avatar.png
|
|
471
|
+
- examples/legacy/not_checked/shoes-manual/stroke.rb
|
|
472
|
+
- examples/legacy/not_checked/shoes-manual/style.rb
|
|
473
|
+
- examples/legacy/not_checked/shoes-manual/style_alternative_1.rb
|
|
474
|
+
- examples/legacy/not_checked/shoes-manual/style_alternative_2.rb
|
|
475
|
+
- examples/legacy/not_checked/shoes-manual/style_length.rb
|
|
476
|
+
- examples/legacy/not_checked/shoes-manual/timer.rb
|
|
477
|
+
- examples/legacy/not_checked/shoes-manual/trigger_window.rb
|
|
478
|
+
- examples/legacy/not_checked/shoes-manual/window_owner.rb
|
|
378
479
|
- examples/legacy/not_checked/shoes3-tests/AnemicCinema1926marcelDuchampCut.mp4
|
|
379
480
|
- examples/legacy/not_checked/shoes3-tests/button/button.rb
|
|
380
481
|
- examples/legacy/not_checked/shoes3-tests/cache/cache.rb
|
|
@@ -391,7 +492,6 @@ files:
|
|
|
391
492
|
- examples/legacy/not_checked/shoes3-tests/dialogs/ask.rb
|
|
392
493
|
- examples/legacy/not_checked/shoes3-tests/dialogs/confirm.rb
|
|
393
494
|
- examples/legacy/not_checked/shoes3-tests/editbox/editbox.rb
|
|
394
|
-
- examples/legacy/not_checked/shoes3-tests/editline/editline.rb
|
|
395
495
|
- examples/legacy/not_checked/shoes3-tests/events/button.rb
|
|
396
496
|
- examples/legacy/not_checked/shoes3-tests/events/button.yaml
|
|
397
497
|
- examples/legacy/not_checked/shoes3-tests/events/capture.rb
|
|
@@ -472,6 +572,27 @@ files:
|
|
|
472
572
|
- examples/legacy/working/shoes-contrib/basic/two-column.rb
|
|
473
573
|
- examples/legacy/working/shoes-contrib/elements/edit_box.rb
|
|
474
574
|
- examples/legacy/working/shoes-contrib/kernel/alert.rb
|
|
575
|
+
- examples/legacy/working/shoes3-tests/editline/editline.rb
|
|
576
|
+
- examples/legacy/working/shoes_manual/alert_button.rb
|
|
577
|
+
- examples/legacy/working/shoes_manual/animate.rb
|
|
578
|
+
- examples/legacy/working/shoes_manual/background_para.rb
|
|
579
|
+
- examples/legacy/working/shoes_manual/button_alternative.rb
|
|
580
|
+
- examples/legacy/working/shoes_manual/checkbox.rb
|
|
581
|
+
- examples/legacy/working/shoes_manual/download.rb
|
|
582
|
+
- examples/legacy/working/shoes_manual/edit_box.rb
|
|
583
|
+
- examples/legacy/working/shoes_manual/editline.rb
|
|
584
|
+
- examples/legacy/working/shoes_manual/fixed_height.rb
|
|
585
|
+
- examples/legacy/working/shoes_manual/fixed_width.rb
|
|
586
|
+
- examples/legacy/working/shoes_manual/image.rb
|
|
587
|
+
- examples/legacy/working/shoes_manual/instance_variable_check.rb
|
|
588
|
+
- examples/legacy/working/shoes_manual/message.rb
|
|
589
|
+
- examples/legacy/working/shoes_manual/rectangle.rb
|
|
590
|
+
- examples/legacy/working/shoes_manual/save_download.rb
|
|
591
|
+
- examples/legacy/working/shoes_manual/self_check.rb
|
|
592
|
+
- examples/legacy/working/shoes_manual/stack.rb
|
|
593
|
+
- examples/legacy/working/shoes_manual/style_info.rb
|
|
594
|
+
- examples/legacy/working/shoes_manual/utf8_support.rb
|
|
595
|
+
- examples/legacy/working/shoes_manual/width.rb
|
|
475
596
|
- examples/legacy/working/simple/basic-edit-box.rb
|
|
476
597
|
- examples/legacy/working/simple/basic-fps.rb
|
|
477
598
|
- examples/legacy/working/simple/border-cat.rb
|
|
@@ -495,11 +616,18 @@ files:
|
|
|
495
616
|
- examples/list_box.rb
|
|
496
617
|
- examples/list_box_choose.rb
|
|
497
618
|
- examples/local_assets/local_file_server.rb
|
|
619
|
+
- examples/local_assets/multi_image.rb
|
|
498
620
|
- examples/local_assets/sample.gif
|
|
499
621
|
- examples/local_assets/sample.mp4
|
|
622
|
+
- examples/local_assets/small.png
|
|
500
623
|
- examples/local_fonts.rb
|
|
501
624
|
- examples/local_images.rb
|
|
625
|
+
- examples/margin.rb
|
|
626
|
+
- examples/margin_check.rb
|
|
502
627
|
- examples/motion_events.rb
|
|
628
|
+
- examples/oval-with-kwargs.rb
|
|
629
|
+
- examples/oval.rb
|
|
630
|
+
- examples/page_navigation_single_app.rb
|
|
503
631
|
- examples/para/collection_of_arguments.rb
|
|
504
632
|
- examples/para/hello_world.rb
|
|
505
633
|
- examples/para/hide_and_show.rb
|
|
@@ -509,6 +637,9 @@ files:
|
|
|
509
637
|
- examples/para/sizes.rb
|
|
510
638
|
- examples/para/sizes_2.rb
|
|
511
639
|
- examples/para/strong.rb
|
|
640
|
+
- examples/para_font_styles.rb
|
|
641
|
+
- examples/para_font_variant.rb
|
|
642
|
+
- examples/para_fontweight.rb
|
|
512
643
|
- examples/para_text_widgets.rb
|
|
513
644
|
- examples/parse_xl_funnies.rb
|
|
514
645
|
- examples/pirate.png
|
|
@@ -520,6 +651,7 @@ files:
|
|
|
520
651
|
- examples/rect.rb
|
|
521
652
|
- examples/rotate_shapes.rb
|
|
522
653
|
- examples/ruby_racer.rb
|
|
654
|
+
- examples/scarpe_ext.rb
|
|
523
655
|
- examples/selfitude.rb
|
|
524
656
|
- examples/shapes/arc.rb
|
|
525
657
|
- examples/shapes/shapes.rb
|
|
@@ -527,6 +659,7 @@ files:
|
|
|
527
659
|
- examples/shapes/star.rb
|
|
528
660
|
- examples/shoes_school.rb
|
|
529
661
|
- examples/shoes_splorer.rb
|
|
662
|
+
- examples/shoes_subclass_app.rb
|
|
530
663
|
- examples/show_hide.rb
|
|
531
664
|
- examples/simple_slides.rb
|
|
532
665
|
- examples/simpler-menu.rb
|
|
@@ -547,6 +680,7 @@ files:
|
|
|
547
680
|
- examples/text_sizes.rb
|
|
548
681
|
- examples/timmy.rb
|
|
549
682
|
- examples/title_and_resize.rb
|
|
683
|
+
- examples/url_routing_example.rb
|
|
550
684
|
- examples/video.rb
|
|
551
685
|
- exe/scarpe
|
|
552
686
|
- fonts/Pacifico.ttf
|
|
@@ -561,7 +695,6 @@ files:
|
|
|
561
695
|
- lacci/lib/scarpe/niente/app.rb
|
|
562
696
|
- lacci/lib/scarpe/niente/display_service.rb
|
|
563
697
|
- lacci/lib/scarpe/niente/drawable.rb
|
|
564
|
-
- lacci/lib/scarpe/niente/logger.rb
|
|
565
698
|
- lacci/lib/scarpe/niente/shoes_spec.rb
|
|
566
699
|
- lacci/lib/shoes-spec.rb
|
|
567
700
|
- lacci/lib/shoes.rb
|
|
@@ -578,23 +711,25 @@ files:
|
|
|
578
711
|
- lacci/lib/shoes/drawables.rb
|
|
579
712
|
- lacci/lib/shoes/drawables/arc.rb
|
|
580
713
|
- lacci/lib/shoes/drawables/arrow.rb
|
|
714
|
+
- lacci/lib/shoes/drawables/border.rb
|
|
581
715
|
- lacci/lib/shoes/drawables/button.rb
|
|
582
716
|
- lacci/lib/shoes/drawables/check.rb
|
|
583
717
|
- lacci/lib/shoes/drawables/document_root.rb
|
|
584
718
|
- lacci/lib/shoes/drawables/edit_box.rb
|
|
585
719
|
- lacci/lib/shoes/drawables/edit_line.rb
|
|
586
720
|
- lacci/lib/shoes/drawables/flow.rb
|
|
721
|
+
- lacci/lib/shoes/drawables/font_helper.rb
|
|
587
722
|
- lacci/lib/shoes/drawables/image.rb
|
|
588
723
|
- lacci/lib/shoes/drawables/line.rb
|
|
589
724
|
- lacci/lib/shoes/drawables/link.rb
|
|
590
725
|
- lacci/lib/shoes/drawables/list_box.rb
|
|
726
|
+
- lacci/lib/shoes/drawables/oval.rb
|
|
591
727
|
- lacci/lib/shoes/drawables/para.rb
|
|
592
728
|
- lacci/lib/shoes/drawables/progress.rb
|
|
593
729
|
- lacci/lib/shoes/drawables/radio.rb
|
|
594
730
|
- lacci/lib/shoes/drawables/rect.rb
|
|
595
731
|
- lacci/lib/shoes/drawables/shape.rb
|
|
596
732
|
- lacci/lib/shoes/drawables/slot.rb
|
|
597
|
-
- lacci/lib/shoes/drawables/span.rb
|
|
598
733
|
- lacci/lib/shoes/drawables/stack.rb
|
|
599
734
|
- lacci/lib/shoes/drawables/star.rb
|
|
600
735
|
- lacci/lib/shoes/drawables/subscription_item.rb
|
|
@@ -603,22 +738,31 @@ files:
|
|
|
603
738
|
- lacci/lib/shoes/drawables/widget.rb
|
|
604
739
|
- lacci/lib/shoes/errors.rb
|
|
605
740
|
- lacci/lib/shoes/log.rb
|
|
741
|
+
- lacci/lib/shoes/margin_helper.rb
|
|
606
742
|
- lacci/lib/shoes/ruby_extensions.rb
|
|
607
|
-
- lacci/
|
|
743
|
+
- lacci/test/.gitignore
|
|
608
744
|
- lacci/test/test_colors.rb
|
|
745
|
+
- lacci/test/test_draw_context.rb
|
|
746
|
+
- lacci/test/test_font_helper.rb
|
|
609
747
|
- lacci/test/test_helper.rb
|
|
610
748
|
- lacci/test/test_lacci.rb
|
|
749
|
+
- lacci/test/test_margin_helper.rb
|
|
750
|
+
- lacci/test/test_niente_test_infra.rb
|
|
751
|
+
- lacci/test/test_oval.rb
|
|
752
|
+
- lacci/test/test_parenting.rb
|
|
611
753
|
- lacci/test/test_shoes_errors.rb
|
|
754
|
+
- lacci/test/test_text_drawables.rb
|
|
612
755
|
- lib/scarpe.rb
|
|
756
|
+
- lib/scarpe/assets.rb
|
|
613
757
|
- lib/scarpe/cats_cradle.rb
|
|
614
758
|
- lib/scarpe/errors.rb
|
|
615
|
-
- lib/scarpe/evented_assertions.rb
|
|
616
759
|
- lib/scarpe/shoes_spec.rb
|
|
617
760
|
- lib/scarpe/version.rb
|
|
618
761
|
- lib/scarpe/wv.rb
|
|
619
762
|
- lib/scarpe/wv/app.rb
|
|
620
763
|
- lib/scarpe/wv/arc.rb
|
|
621
764
|
- lib/scarpe/wv/arrow.rb
|
|
765
|
+
- lib/scarpe/wv/border.rb
|
|
622
766
|
- lib/scarpe/wv/button.rb
|
|
623
767
|
- lib/scarpe/wv/check.rb
|
|
624
768
|
- lib/scarpe/wv/control_interface.rb
|
|
@@ -631,13 +775,14 @@ files:
|
|
|
631
775
|
- lib/scarpe/wv/line.rb
|
|
632
776
|
- lib/scarpe/wv/link.rb
|
|
633
777
|
- lib/scarpe/wv/list_box.rb
|
|
778
|
+
- lib/scarpe/wv/oval.rb
|
|
634
779
|
- lib/scarpe/wv/para.rb
|
|
635
780
|
- lib/scarpe/wv/progress.rb
|
|
636
781
|
- lib/scarpe/wv/radio.rb
|
|
637
782
|
- lib/scarpe/wv/rect.rb
|
|
783
|
+
- lib/scarpe/wv/scarpe_extensions.rb
|
|
638
784
|
- lib/scarpe/wv/shape.rb
|
|
639
785
|
- lib/scarpe/wv/slot.rb
|
|
640
|
-
- lib/scarpe/wv/span.rb
|
|
641
786
|
- lib/scarpe/wv/stack.rb
|
|
642
787
|
- lib/scarpe/wv/star.rb
|
|
643
788
|
- lib/scarpe/wv/subscription_item.rb
|
|
@@ -657,15 +802,43 @@ files:
|
|
|
657
802
|
- scarpe-components/Gemfile.lock
|
|
658
803
|
- scarpe-components/README.md
|
|
659
804
|
- scarpe-components/Rakefile
|
|
805
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-cerulean.css
|
|
806
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-cosmo.css
|
|
807
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-cyborg.css
|
|
808
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-darkly.css
|
|
809
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-flatly.css
|
|
810
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-icons.min.css
|
|
811
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-journal.css
|
|
812
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-litera.css
|
|
813
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-lumen.css
|
|
814
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-lux.css
|
|
815
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-materia.css
|
|
816
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-minty.css
|
|
817
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-morph.css
|
|
818
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-pulse.css
|
|
819
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-quartz.css
|
|
820
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-sandstone.css
|
|
821
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-simplex.css
|
|
822
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-sketchy.css
|
|
823
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-slate.css
|
|
824
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-solar.css
|
|
825
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-spacelab.css
|
|
826
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-superhero.css
|
|
827
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-united.css
|
|
828
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-vapor.css
|
|
829
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-yeti.css
|
|
830
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap-zephyr.css
|
|
831
|
+
- scarpe-components/assets/bootstrap-themes/bootstrap.bundle.min.js
|
|
832
|
+
- scarpe-components/lib/scarpe/components/asset_server.rb
|
|
660
833
|
- scarpe-components/lib/scarpe/components/base64.rb
|
|
661
834
|
- scarpe-components/lib/scarpe/components/calzini.rb
|
|
662
835
|
- scarpe-components/lib/scarpe/components/calzini/alert.rb
|
|
663
|
-
- scarpe-components/lib/scarpe/components/calzini/
|
|
836
|
+
- scarpe-components/lib/scarpe/components/calzini/art_drawables.rb
|
|
837
|
+
- scarpe-components/lib/scarpe/components/calzini/border.rb
|
|
664
838
|
- scarpe-components/lib/scarpe/components/calzini/button.rb
|
|
665
839
|
- scarpe-components/lib/scarpe/components/calzini/misc.rb
|
|
666
840
|
- scarpe-components/lib/scarpe/components/calzini/para.rb
|
|
667
841
|
- scarpe-components/lib/scarpe/components/calzini/slots.rb
|
|
668
|
-
- scarpe-components/lib/scarpe/components/calzini/text_widgets.rb
|
|
669
842
|
- scarpe-components/lib/scarpe/components/errors.rb
|
|
670
843
|
- scarpe-components/lib/scarpe/components/file_helpers.rb
|
|
671
844
|
- scarpe-components/lib/scarpe/components/html.rb
|
|
@@ -673,7 +846,9 @@ files:
|
|
|
673
846
|
- scarpe-components/lib/scarpe/components/minitest_import_runnable.rb
|
|
674
847
|
- scarpe-components/lib/scarpe/components/minitest_result.rb
|
|
675
848
|
- scarpe-components/lib/scarpe/components/modular_logger.rb
|
|
849
|
+
- scarpe-components/lib/scarpe/components/port_helpers.rb
|
|
676
850
|
- scarpe-components/lib/scarpe/components/print_logger.rb
|
|
851
|
+
- scarpe-components/lib/scarpe/components/process_helpers.rb
|
|
677
852
|
- scarpe-components/lib/scarpe/components/promises.rb
|
|
678
853
|
- scarpe-components/lib/scarpe/components/segmented_file_loader.rb
|
|
679
854
|
- scarpe-components/lib/scarpe/components/string_helpers.rb
|
|
@@ -681,6 +856,10 @@ files:
|
|
|
681
856
|
- scarpe-components/lib/scarpe/components/unit_test_helpers.rb
|
|
682
857
|
- scarpe-components/lib/scarpe/components/version.rb
|
|
683
858
|
- scarpe-components/scarpe-components.gemspec
|
|
859
|
+
- scarpe-components/test/assets/big-image.png
|
|
860
|
+
- scarpe-components/test/assets/big-stylesheet.css
|
|
861
|
+
- scarpe-components/test/assets/little-image.png
|
|
862
|
+
- scarpe-components/test/assets/little-stylesheet.css
|
|
684
863
|
- scarpe-components/test/calzini/test_calzini_alert.rb
|
|
685
864
|
- scarpe-components/test/calzini/test_calzini_art_drawables.rb
|
|
686
865
|
- scarpe-components/test/calzini/test_calzini_button.rb
|
|
@@ -688,16 +867,19 @@ files:
|
|
|
688
867
|
- scarpe-components/test/calzini/test_calzini_para.rb
|
|
689
868
|
- scarpe-components/test/calzini/test_calzini_slots.rb
|
|
690
869
|
- scarpe-components/test/calzini/test_calzini_text_drawables.rb
|
|
870
|
+
- scarpe-components/test/calzini/test_various.rb
|
|
691
871
|
- scarpe-components/test/mtr_data/exception.json
|
|
692
872
|
- scarpe-components/test/mtr_data/fail_with_message.json
|
|
693
873
|
- scarpe-components/test/mtr_data/skipped_no_message.json
|
|
694
874
|
- scarpe-components/test/mtr_data/skipped_w_msg.json
|
|
695
875
|
- scarpe-components/test/mtr_data/succeed_2_asserts.json
|
|
876
|
+
- scarpe-components/test/test_asset_server.rb
|
|
696
877
|
- scarpe-components/test/test_components.rb
|
|
697
878
|
- scarpe-components/test/test_dimensions.rb
|
|
698
879
|
- scarpe-components/test/test_helper.rb
|
|
699
880
|
- scarpe-components/test/test_html.rb
|
|
700
881
|
- scarpe-components/test/test_minitest_result.rb
|
|
882
|
+
- scarpe-components/test/test_port_helpers.rb
|
|
701
883
|
- scarpe-components/test/test_promises.rb
|
|
702
884
|
- scarpe-components/test/test_segmented_app_files.rb
|
|
703
885
|
- scarpegen.rb
|
|
@@ -732,6 +914,8 @@ files:
|
|
|
732
914
|
- spikes/libui/notepad.md
|
|
733
915
|
- spikes/libui/para.rb
|
|
734
916
|
- spikes/libui/stack.rb
|
|
917
|
+
- tasks/check_html_fixtures.rb
|
|
918
|
+
- tasks/regenerate_html_fixtures.rb
|
|
735
919
|
- templates/basic_class_template.erb
|
|
736
920
|
- templates/class_template_with_event_bind.erb
|
|
737
921
|
- templates/class_template_with_shapes.erb
|
|
@@ -743,9 +927,12 @@ licenses:
|
|
|
743
927
|
- MIT
|
|
744
928
|
metadata:
|
|
745
929
|
homepage_uri: https://github.com/scarpe-team/scarpe
|
|
746
|
-
source_code_uri: https://github.com/scarpe-team/scarpe
|
|
747
930
|
changelog_uri: https://github.com/scarpe-team/scarpe/blob/main/CHANGELOG.md
|
|
748
|
-
post_install_message:
|
|
931
|
+
post_install_message: "\n (\\(\\\n (>':')\n o(__\")\")\n\n
|
|
932
|
+
\ Welcome to Scarpe!\n Let's hop into some magic!\n\n \U0001F3A9✨
|
|
933
|
+
Abracadabra! ✨\U0001F430\n\n Scarpe is tying itself to your system...\n Don't
|
|
934
|
+
worry, it's as easy as putting on bunny slippers!\n\n Are you ready to bounce
|
|
935
|
+
into a world of wonder?\n\n Enjoy your magical journey with Scarpe!\n"
|
|
749
936
|
rdoc_options: []
|
|
750
937
|
require_paths:
|
|
751
938
|
- lib
|
|
@@ -760,8 +947,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
760
947
|
- !ruby/object:Gem::Version
|
|
761
948
|
version: '0'
|
|
762
949
|
requirements: []
|
|
763
|
-
rubygems_version: 3.
|
|
764
|
-
signing_key:
|
|
950
|
+
rubygems_version: 3.6.9
|
|
765
951
|
specification_version: 4
|
|
766
952
|
summary: Scarpe - shoes but running on webview
|
|
767
953
|
test_files: []
|
data/.rubocop.yml
DELETED
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
inherit_gem:
|
|
2
|
-
rubocop-shopify: rubocop.yml
|
|
3
|
-
|
|
4
|
-
AllCops:
|
|
5
|
-
TargetRubyVersion: 3.2
|
|
6
|
-
SuggestExtensions: false
|
|
7
|
-
Exclude:
|
|
8
|
-
- 'bin/**/*'
|
|
9
|
-
- 'exe/**/*'
|
|
10
|
-
- 'examples/**/*'
|
|
11
|
-
- 'docs/**/*'
|
|
12
|
-
|
|
13
|
-
Layout/LineLength:
|
|
14
|
-
Max: 150
|
|
15
|
-
|
|
16
|
-
Style/RedundantHeredocDelimiterQuotes:
|
|
17
|
-
Enabled: false
|
|
18
|
-
|
|
19
|
-
Style/MissingRespondToMissing:
|
|
20
|
-
Enabled: false
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
Style/MethodCallWithArgsParentheses:
|
|
25
|
-
Enabled: false
|
|
26
|
-
|
|
27
|
-
Style/GlobalVars:
|
|
28
|
-
Enabled: false
|
|
29
|
-
|
|
30
|
-
Style/CommandLiteral:
|
|
31
|
-
Enabled: false
|
|
32
|
-
|
|
33
|
-
Security/Eval:
|
|
34
|
-
Enabled: false
|
|
35
|
-
|
|
36
|
-
Style/LineEndConcatenation:
|
|
37
|
-
Enabled: false
|
|
38
|
-
|
|
39
|
-
Style/ClassVars:
|
|
40
|
-
Enabled: false
|
|
41
|
-
|
|
42
|
-
Naming/AccessorMethodName:
|
|
43
|
-
Enabled: false
|
|
44
|
-
|
|
45
|
-
Style/RedundantSelf:
|
|
46
|
-
Enabled: false
|
|
47
|
-
|
|
48
|
-
Style/ClassMethodsDefinitions:
|
|
49
|
-
Enabled: false
|
|
50
|
-
|
|
51
|
-
Style/SpecialGlobalVars:
|
|
52
|
-
Enabled: false
|
|
53
|
-
|
|
54
|
-
Style/CaseEquality:
|
|
55
|
-
Enabled: false
|
|
56
|
-
|
|
57
|
-
Style/RedundantConstantBase:
|
|
58
|
-
Enabled: false
|
|
59
|
-
|
|
60
|
-
Style/EmptyElse:
|
|
61
|
-
Enabled: false
|
|
62
|
-
|
|
63
|
-
Metrics/BlockNesting:
|
|
64
|
-
Enabled: false
|
|
65
|
-
|
|
66
|
-
Layout/EmptyLinesAroundExceptionHandlingKeywords:
|
|
67
|
-
Enabled: false
|
|
68
|
-
|
|
69
|
-
Style/RedundantBegin:
|
|
70
|
-
Enabled: false
|
|
71
|
-
|
|
72
|
-
Layout/LeadingCommentSpace:
|
|
73
|
-
Enabled: false
|
|
74
|
-
|
|
75
|
-
Style/FormatString:
|
|
76
|
-
Enabled: false
|
|
77
|
-
|
|
78
|
-
Style/RegexpLiteral:
|
|
79
|
-
Enabled: false
|
|
80
|
-
|
|
81
|
-
Style/ReturnNil:
|
|
82
|
-
Enabled: false
|
|
83
|
-
|
|
84
|
-
Style/ClassAndModuleChildren:
|
|
85
|
-
Enabled: false
|
|
86
|
-
|
|
87
|
-
Layout/EmptyLineBetweenDefs:
|
|
88
|
-
Enabled: false
|