scarpe 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (251) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +7 -1
  3. data/CHANGELOG.md +36 -4
  4. data/Gemfile +2 -1
  5. data/Gemfile.lock +13 -3
  6. data/LICENSE.txt +7 -1
  7. data/README.md +77 -14
  8. data/Rakefile +67 -0
  9. data/examples/Edit_box_Styles.rb +8 -0
  10. data/examples/Kerning.rb +7 -0
  11. data/examples/border.rb +11 -0
  12. data/examples/check.rb +2 -0
  13. data/examples/download_and_show_image.rb +3 -0
  14. data/examples/flags/finland.rb +15 -0
  15. data/examples/flags/italy.rb +11 -0
  16. data/examples/flags/mauritius.rb +14 -0
  17. data/examples/font_family.rb +17 -0
  18. data/examples/font_shorthand.rb +9 -0
  19. data/examples/gen.rb +4 -0
  20. data/examples/legacy/not_checked/shoes-manual/append.rb +10 -0
  21. data/examples/legacy/not_checked/shoes-manual/background_change.rb +12 -0
  22. data/examples/legacy/not_checked/shoes-manual/background_pattern.rb +5 -0
  23. data/examples/legacy/not_checked/shoes-manual/basic_app.rb +8 -0
  24. data/examples/legacy/not_checked/shoes-manual/border.rb +9 -0
  25. data/examples/legacy/not_checked/shoes-manual/builtins/FONTS.rb +5 -0
  26. data/examples/legacy/not_checked/shoes-manual/builtins/ask.rb +2 -0
  27. data/examples/legacy/not_checked/shoes-manual/builtins/ask_color.rb +5 -0
  28. data/examples/legacy/not_checked/shoes-manual/builtins/ask_open_file.rb +5 -0
  29. data/examples/legacy/not_checked/shoes-manual/builtins/ask_save_folder.rb +2 -0
  30. data/examples/legacy/not_checked/shoes-manual/builtins/confirm.rb +4 -0
  31. data/examples/legacy/not_checked/shoes-manual/builtins/debug.rb +2 -0
  32. data/examples/legacy/not_checked/shoes-manual/builtins/info.rb +3 -0
  33. data/examples/legacy/not_checked/shoes-manual/button.rb +9 -0
  34. data/examples/legacy/not_checked/shoes-manual/clear.rb +7 -0
  35. data/examples/legacy/not_checked/shoes-manual/custom_header.rb +13 -0
  36. data/examples/legacy/not_checked/shoes-manual/displace.rb +14 -0
  37. data/examples/legacy/not_checked/shoes-manual/edit_box.rb +8 -0
  38. data/examples/legacy/not_checked/shoes-manual/fill_pattern.rb +5 -0
  39. data/examples/legacy/not_checked/shoes-manual/fonts.rb +7 -0
  40. data/examples/legacy/not_checked/shoes-manual/gutter.rb +6 -0
  41. data/examples/legacy/not_checked/shoes-manual/image_web.rb +4 -0
  42. data/examples/legacy/not_checked/shoes-manual/keypress.rb +7 -0
  43. data/examples/legacy/not_checked/shoes-manual/list_box.rb +10 -0
  44. data/examples/legacy/not_checked/shoes-manual/motion.rb +10 -0
  45. data/examples/legacy/not_checked/shoes-manual/mouse.rb +8 -0
  46. data/examples/legacy/not_checked/shoes-manual/move.rb +14 -0
  47. data/examples/legacy/not_checked/shoes-manual/nested_ovals.rb +8 -0
  48. data/examples/legacy/not_checked/shoes-manual/oval.rb +7 -0
  49. data/examples/legacy/not_checked/shoes-manual/ovals.rb +6 -0
  50. data/examples/legacy/not_checked/shoes-manual/ovals_image.rb +8 -0
  51. data/examples/legacy/not_checked/shoes-manual/prepend.rb +7 -0
  52. data/examples/legacy/not_checked/shoes-manual/progress_bar.rb +10 -0
  53. data/examples/legacy/not_checked/shoes-manual/radio.rb +18 -0
  54. data/examples/legacy/not_checked/shoes-manual/radio_alternative_1.rb +7 -0
  55. data/examples/legacy/not_checked/shoes-manual/radio_alternative_2.rb +9 -0
  56. data/examples/legacy/not_checked/shoes-manual/rotate_rectangle.rb +6 -0
  57. data/examples/legacy/not_checked/shoes-manual/shape.rb +11 -0
  58. data/examples/legacy/not_checked/shoes-manual/static/avatar.png +0 -0
  59. data/examples/legacy/not_checked/shoes-manual/stroke.rb +5 -0
  60. data/examples/legacy/not_checked/shoes-manual/style.rb +3 -0
  61. data/examples/legacy/not_checked/shoes-manual/style_alternative_1.rb +4 -0
  62. data/examples/legacy/not_checked/shoes-manual/style_alternative_2.rb +5 -0
  63. data/examples/legacy/not_checked/shoes-manual/style_length.rb +5 -0
  64. data/examples/legacy/not_checked/shoes-manual/timer.rb +6 -0
  65. data/examples/legacy/not_checked/shoes-manual/trigger_window.rb +8 -0
  66. data/examples/legacy/not_checked/shoes-manual/window_owner.rb +8 -0
  67. data/examples/legacy/working/shoes_manual/alert_button.rb +2 -0
  68. data/examples/legacy/working/shoes_manual/animate.rb +7 -0
  69. data/examples/legacy/working/shoes_manual/background_para.rb +4 -0
  70. data/examples/legacy/working/shoes_manual/button_alternative.rb +7 -0
  71. data/examples/legacy/working/shoes_manual/checkbox.rb +17 -0
  72. data/examples/legacy/working/shoes_manual/download.rb +12 -0
  73. data/examples/legacy/working/shoes_manual/edit_box.rb +6 -0
  74. data/examples/legacy/working/shoes_manual/editline.rb +7 -0
  75. data/examples/legacy/working/shoes_manual/fixed_height.rb +8 -0
  76. data/examples/legacy/working/shoes_manual/fixed_width.rb +12 -0
  77. data/examples/legacy/working/shoes_manual/image.rb +5 -0
  78. data/examples/legacy/working/shoes_manual/instance_variable_check.rb +10 -0
  79. data/examples/legacy/working/shoes_manual/message.rb +18 -0
  80. data/examples/legacy/working/shoes_manual/rectangle.rb +6 -0
  81. data/examples/legacy/working/shoes_manual/save_download.rb +12 -0
  82. data/examples/legacy/working/shoes_manual/self_check.rb +10 -0
  83. data/examples/legacy/working/shoes_manual/stack.rb +7 -0
  84. data/examples/legacy/working/shoes_manual/style_info.rb +8 -0
  85. data/examples/legacy/working/shoes_manual/utf8_support.rb +8 -0
  86. data/examples/legacy/working/shoes_manual/width.rb +4 -0
  87. data/examples/local_assets/multi_image.rb +5 -0
  88. data/examples/local_assets/small.png +0 -0
  89. data/examples/local_fonts.rb +3 -0
  90. data/examples/margin.rb +13 -0
  91. data/examples/margin_check.rb +27 -0
  92. data/examples/oval-with-kwargs.rb +3 -0
  93. data/examples/oval.rb +26 -0
  94. data/examples/para_font_styles.rb +17 -0
  95. data/examples/para_font_variant.rb +6 -0
  96. data/examples/para_fontweight.rb +13 -0
  97. data/examples/parse_xl_funnies.rb +3 -0
  98. data/examples/rect.rb +1 -1
  99. data/examples/scarpe_ext.rb +3 -0
  100. data/examples/shapes/star.rb +1 -3
  101. data/examples/spacing.rb +1 -1
  102. data/examples/span.rb +4 -2
  103. data/lacci/lacci.gemspec +2 -2
  104. data/lacci/lib/lacci/scarpe_cli.rb +0 -1
  105. data/lacci/lib/lacci/version.rb +1 -1
  106. data/lacci/lib/scarpe/niente/display_service.rb +5 -1
  107. data/lacci/lib/scarpe/niente/drawable.rb +2 -0
  108. data/lacci/lib/scarpe/niente/shoes_spec.rb +7 -1
  109. data/lacci/lib/scarpe/niente.rb +14 -2
  110. data/lacci/lib/shoes/app.rb +44 -50
  111. data/lacci/lib/shoes/constants.rb +23 -2
  112. data/lacci/lib/shoes/display_service.rb +43 -4
  113. data/lacci/lib/shoes/drawable.rb +309 -35
  114. data/lacci/lib/shoes/drawables/arc.rb +2 -24
  115. data/lacci/lib/shoes/drawables/arrow.rb +2 -22
  116. data/lacci/lib/shoes/drawables/border.rb +28 -0
  117. data/lacci/lib/shoes/drawables/button.rb +4 -20
  118. data/lacci/lib/shoes/drawables/check.rb +7 -3
  119. data/lacci/lib/shoes/drawables/document_root.rb +4 -4
  120. data/lacci/lib/shoes/drawables/edit_box.rb +6 -5
  121. data/lacci/lib/shoes/drawables/edit_line.rb +5 -4
  122. data/lacci/lib/shoes/drawables/flow.rb +3 -5
  123. data/lacci/lib/shoes/drawables/font_helper.rb +62 -0
  124. data/lacci/lib/shoes/drawables/image.rb +2 -2
  125. data/lacci/lib/shoes/drawables/line.rb +4 -7
  126. data/lacci/lib/shoes/drawables/link.rb +5 -8
  127. data/lacci/lib/shoes/drawables/list_box.rb +8 -5
  128. data/lacci/lib/shoes/drawables/oval.rb +48 -0
  129. data/lacci/lib/shoes/drawables/para.rb +106 -18
  130. data/lacci/lib/shoes/drawables/progress.rb +2 -1
  131. data/lacci/lib/shoes/drawables/radio.rb +5 -3
  132. data/lacci/lib/shoes/drawables/rect.rb +5 -4
  133. data/lacci/lib/shoes/drawables/shape.rb +2 -1
  134. data/lacci/lib/shoes/drawables/slot.rb +99 -8
  135. data/lacci/lib/shoes/drawables/stack.rb +6 -11
  136. data/lacci/lib/shoes/drawables/star.rb +8 -30
  137. data/lacci/lib/shoes/drawables/text_drawable.rb +93 -34
  138. data/lacci/lib/shoes/drawables/video.rb +3 -2
  139. data/lacci/lib/shoes/drawables/widget.rb +8 -3
  140. data/lacci/lib/shoes/drawables.rb +2 -1
  141. data/lacci/lib/shoes/errors.rb +13 -3
  142. data/lacci/lib/shoes/margin_helper.rb +79 -0
  143. data/lacci/lib/shoes.rb +4 -3
  144. data/lacci/test/.gitignore +1 -0
  145. data/lacci/test/test_draw_context.rb +167 -0
  146. data/lacci/test/test_font_helper.rb +57 -0
  147. data/lacci/test/test_helper.rb +31 -4
  148. data/lacci/test/test_lacci.rb +93 -6
  149. data/lacci/test/test_margin_helper.rb +82 -0
  150. data/lacci/test/test_niente_test_infra.rb +26 -0
  151. data/lacci/test/test_oval.rb +82 -0
  152. data/lacci/test/test_parenting.rb +140 -0
  153. data/lacci/test/test_text_drawables.rb +23 -0
  154. data/lib/scarpe/assets.rb +18 -0
  155. data/lib/scarpe/cats_cradle.rb +57 -98
  156. data/lib/scarpe/shoes_spec.rb +22 -43
  157. data/lib/scarpe/version.rb +1 -1
  158. data/lib/scarpe/wv/app.rb +1 -0
  159. data/lib/scarpe/wv/arc.rb +0 -4
  160. data/lib/scarpe/wv/border.rb +15 -0
  161. data/lib/scarpe/wv/control_interface.rb +2 -10
  162. data/lib/scarpe/wv/document_root.rb +2 -2
  163. data/lib/scarpe/wv/drawable.rb +6 -40
  164. data/lib/scarpe/wv/edit_box.rb +4 -1
  165. data/lib/scarpe/wv/edit_line.rb +5 -2
  166. data/lib/scarpe/wv/image.rb +2 -5
  167. data/lib/scarpe/wv/link.rb +4 -2
  168. data/lib/scarpe/wv/oval.rb +13 -0
  169. data/lib/scarpe/wv/para.rb +1 -0
  170. data/lib/scarpe/wv/scarpe_extensions.rb +8 -0
  171. data/lib/scarpe/wv/shape.rb +10 -5
  172. data/lib/scarpe/wv/text_drawable.rb +72 -14
  173. data/lib/scarpe/wv/web_wrangler.rb +33 -11
  174. data/lib/scarpe/wv/webview_local_display.rb +6 -2
  175. data/lib/scarpe/wv.rb +8 -1
  176. data/scarpe-components/Gemfile +4 -1
  177. data/scarpe-components/Gemfile.lock +2 -3
  178. data/scarpe-components/README.md +2 -2
  179. data/scarpe-components/assets/bootstrap-themes/bootstrap-cerulean.css +12229 -0
  180. data/scarpe-components/assets/bootstrap-themes/bootstrap-cosmo.css +11810 -0
  181. data/scarpe-components/assets/bootstrap-themes/bootstrap-cyborg.css +12210 -0
  182. data/scarpe-components/assets/bootstrap-themes/bootstrap-darkly.css +12153 -0
  183. data/scarpe-components/assets/bootstrap-themes/bootstrap-flatly.css +12126 -0
  184. data/scarpe-components/assets/bootstrap-themes/bootstrap-icons.min.css +5 -0
  185. data/scarpe-components/assets/bootstrap-themes/bootstrap-journal.css +12099 -0
  186. data/scarpe-components/assets/bootstrap-themes/bootstrap-litera.css +12211 -0
  187. data/scarpe-components/assets/bootstrap-themes/bootstrap-lumen.css +12369 -0
  188. data/scarpe-components/assets/bootstrap-themes/bootstrap-lux.css +11928 -0
  189. data/scarpe-components/assets/bootstrap-themes/bootstrap-materia.css +13184 -0
  190. data/scarpe-components/assets/bootstrap-themes/bootstrap-minty.css +12177 -0
  191. data/scarpe-components/assets/bootstrap-themes/bootstrap-morph.css +12750 -0
  192. data/scarpe-components/assets/bootstrap-themes/bootstrap-pulse.css +11890 -0
  193. data/scarpe-components/assets/bootstrap-themes/bootstrap-quartz.css +12622 -0
  194. data/scarpe-components/assets/bootstrap-themes/bootstrap-sandstone.css +12201 -0
  195. data/scarpe-components/assets/bootstrap-themes/bootstrap-simplex.css +12186 -0
  196. data/scarpe-components/assets/bootstrap-themes/bootstrap-sketchy.css +12451 -0
  197. data/scarpe-components/assets/bootstrap-themes/bootstrap-slate.css +12492 -0
  198. data/scarpe-components/assets/bootstrap-themes/bootstrap-solar.css +12149 -0
  199. data/scarpe-components/assets/bootstrap-themes/bootstrap-spacelab.css +12266 -0
  200. data/scarpe-components/assets/bootstrap-themes/bootstrap-superhero.css +12216 -0
  201. data/scarpe-components/assets/bootstrap-themes/bootstrap-united.css +12077 -0
  202. data/scarpe-components/assets/bootstrap-themes/bootstrap-vapor.css +12549 -0
  203. data/scarpe-components/assets/bootstrap-themes/bootstrap-yeti.css +12325 -0
  204. data/scarpe-components/assets/bootstrap-themes/bootstrap-zephyr.css +12283 -0
  205. data/scarpe-components/assets/bootstrap-themes/bootstrap.bundle.min.js +7 -0
  206. data/scarpe-components/lib/scarpe/components/asset_server.rb +219 -0
  207. data/scarpe-components/lib/scarpe/components/base64.rb +22 -0
  208. data/scarpe-components/lib/scarpe/components/calzini/{art_widgets.rb → art_drawables.rb} +42 -18
  209. data/scarpe-components/lib/scarpe/components/calzini/border.rb +38 -0
  210. data/scarpe-components/lib/scarpe/components/calzini/button.rb +6 -8
  211. data/scarpe-components/lib/scarpe/components/calzini/misc.rb +7 -17
  212. data/scarpe-components/lib/scarpe/components/calzini/para.rb +213 -11
  213. data/scarpe-components/lib/scarpe/components/calzini/slots.rb +14 -60
  214. data/scarpe-components/lib/scarpe/components/calzini.rb +88 -1
  215. data/scarpe-components/lib/scarpe/components/errors.rb +4 -0
  216. data/scarpe-components/lib/scarpe/components/html.rb +4 -1
  217. data/scarpe-components/lib/scarpe/components/minitest_export_reporter.rb +11 -3
  218. data/scarpe-components/lib/scarpe/components/minitest_result.rb +41 -0
  219. data/scarpe-components/lib/scarpe/components/print_logger.rb +17 -2
  220. data/scarpe-components/lib/scarpe/components/process_helpers.rb +37 -0
  221. data/scarpe-components/lib/scarpe/components/segmented_file_loader.rb +1 -1
  222. data/scarpe-components/lib/scarpe/components/tiranti.rb +42 -100
  223. data/scarpe-components/lib/scarpe/components/unit_test_helpers.rb +3 -1
  224. data/scarpe-components/lib/scarpe/components/version.rb +1 -1
  225. data/scarpe-components/test/assets/big-image.png +0 -0
  226. data/scarpe-components/test/assets/big-stylesheet.css +497 -0
  227. data/scarpe-components/test/assets/little-image.png +0 -0
  228. data/scarpe-components/test/assets/little-stylesheet.css +1 -0
  229. data/scarpe-components/test/calzini/test_calzini_art_drawables.rb +7 -7
  230. data/scarpe-components/test/calzini/test_calzini_button.rb +7 -5
  231. data/scarpe-components/test/calzini/test_calzini_misc.rb +9 -9
  232. data/scarpe-components/test/calzini/test_calzini_para.rb +6 -9
  233. data/scarpe-components/test/calzini/test_calzini_slots.rb +12 -57
  234. data/scarpe-components/test/calzini/test_calzini_text_drawables.rb +83 -18
  235. data/scarpe-components/test/calzini/test_various.rb +133 -0
  236. data/scarpe-components/test/test_asset_server.rb +72 -0
  237. data/scarpe-components/test/test_components.rb +31 -2
  238. data/scarpe-components/test/test_helper.rb +0 -1
  239. data/scarpe-components/test/test_minitest_result.rb +7 -0
  240. data/scarpe-components/test/test_segmented_app_files.rb +2 -0
  241. data/tasks/check_html_fixtures.rb +140 -0
  242. data/tasks/regenerate_html_fixtures.rb +104 -0
  243. data/templates/class_template_with_shapes.erb +0 -11
  244. metadata +180 -32
  245. data/lacci/lib/scarpe/niente/logger.rb +0 -29
  246. data/lacci/lib/shoes/drawables/span.rb +0 -27
  247. data/lacci/lib/shoes/spacing.rb +0 -9
  248. data/lib/scarpe/evented_assertions.rb +0 -121
  249. data/lib/scarpe/wv/span.rb +0 -44
  250. data/scarpe-components/lib/scarpe/components/calzini/text_widgets.rb +0 -65
  251. /data/examples/legacy/{not_checked → working}/shoes3-tests/editline/editline.rb +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c83fb76fc149cffa58c679978dc3647689acb5b418d7e65a931bddfb1687b250
4
- data.tar.gz: 2b73dae2f9f5be78d6b5637d605b089c3031b14aff91acc1eced51f021283f5a
3
+ metadata.gz: 4d9a2f4008f1c1db114dc1b5f3b0331635b8021d878a3ca30d79a7c8bc6a00fd
4
+ data.tar.gz: 4d46f7680c7dcee6737c0ba6c9214ace6d81383b3238cc4c93c94521569cdc3f
5
5
  SHA512:
6
- metadata.gz: 6da8066857ec4241252fcca4bbe01a60c369260b618a65f44384666a4ed67311ee3bd065ab68bed79f7084e3f8c5ba7c8db3244c3cbcf9e166d1ad5130ccb43d
7
- data.tar.gz: b8ba6762940cc53078e1461024f26b762acd302a99cb6fccd965b4c4018ac1452ad85821c78c8ab59b28db572ac899781d1e84bacd77bce602a9edeb0fe84a85
6
+ metadata.gz: f4b7b5279f422631643c9c53e98051abce6c85ab42ec4d1eee3e19dc0bb1c15a77ba6773c2e844bafa3313ea58138f4c855c4d8036f122863dbb5f57c226c10a
7
+ data.tar.gz: 71206dc45ab004580e009cc9ccc03c9af075721538dcf2bf7527dcdd5c2a428a5b84aa109c1f322480550b900c0376eea215515057aa3570ba9dea0e7b7539a1
data/.rubocop.yml CHANGED
@@ -7,7 +7,7 @@ AllCops:
7
7
  Exclude:
8
8
  - 'bin/**/*'
9
9
  - 'exe/**/*'
10
- - 'examples/**/*'
10
+ # - 'examples/**/*' Since I'm only doing this locally.
11
11
  - 'docs/**/*'
12
12
 
13
13
  Layout/LineLength:
@@ -19,6 +19,12 @@ Style/RedundantHeredocDelimiterQuotes:
19
19
  Style/MissingRespondToMissing:
20
20
  Enabled: false
21
21
 
22
+ Metrics/ParameterLists:
23
+ Enabled: false
24
+
25
+ Style/ParallelAssignment:
26
+ Enabled: false
27
+
22
28
 
23
29
 
24
30
  Style/MethodCallWithArgsParentheses:
data/CHANGELOG.md CHANGED
@@ -1,14 +1,46 @@
1
- ## [Unreleased]
1
+ ## [Unreleased Future]
2
2
 
3
3
  Here we write upgrading notes for brands. It's a team effort to make them as
4
4
  straightforward as possible.
5
5
 
6
- ### Added
6
+ ### Enhancements
7
+
8
+ ### Bugs Fixed
7
9
  - #-some-pr-number <description> @author-of-pr
8
10
 
9
- ### Changed
11
+ ### Incompatibilities
12
+
13
+ ## [0.3.1] - 2023-??-?? - Up
14
+
15
+ Lots of bug fixes. We're also still implementing major Shoes3 features.
16
+ Testing is finally improving at a reasonable rate, but we have a long
17
+ way to go.
18
+
19
+ The Scarpe architecture is still early. We've improved the internal APIs
20
+ for creating drawables significantly, added an asset server and are
21
+ still making big changes.
22
+
23
+ ### Enhancements
24
+
25
+ - Ovals!
26
+ - Lots more text methods: del, sub, sup; lots more text styles: underline, strikethrough, strikecolor, align
27
+ - Features! Shoes.app(feature: [:html, :scarpe]) lets apps declare dependencies on non-classic Shoes!
28
+ - Better handling of :left, :top, :width and :height, :margin and :padding on more drawables
29
+ - The html_class style is a feature to make it easier to do Bootstrap styling on your drawables
30
+ - Directly run Shoes Specs, including with Niente
31
+ - We use Minitest assertion DSL rather than our own everywhere now
32
+
33
+ ### Bugs Fixed
34
+
35
+ - We've changed "module Shoes" to "class Shoes" for Shoes3 compatibility.
36
+ - Several style and method names, including on Para and ListBox, changed to Shoes3 standard.
37
+
38
+ ### Incompatibilities
10
39
 
11
- ### Fixed
40
+ TextDrawables now draw with very different Calzini (HTML renderer) properties
41
+ We're deprecating the CatsCradle test DSL in favour of Shoes-Spec.
42
+ Some error names have changed, with more to come.
43
+ We've changed the Lacci drawable-create event to include the parent ID.
12
44
 
13
45
  ## [0.3.0] - 2023-11-24 - You
14
46
 
data/Gemfile CHANGED
@@ -21,7 +21,8 @@ group :development do
21
21
  gem "redcarpet"
22
22
  gem "debug"
23
23
  gem "rubocop", "~> 1.21"
24
- gem "rubocop-shopify"
24
+ gem "htmlbeautifier"
25
+ gem "diff-lcs"
25
26
  #gem "commonmarker"
26
27
  #gem "github-markup"
27
28
  end
data/Gemfile.lock CHANGED
@@ -9,6 +9,7 @@ PATH
9
9
  nokogiri
10
10
  scarpe-components
11
11
  sqlite3
12
+ webrick
12
13
  webview_ruby (~> 0.1.1)
13
14
 
14
15
  PATH
@@ -32,11 +33,13 @@ GEM
32
33
  debug (1.8.0)
33
34
  irb (>= 1.5.0)
34
35
  reline (>= 0.3.1)
36
+ diff-lcs (1.5.0)
35
37
  fastimage (2.2.7)
36
38
  ffi (1.15.5)
37
39
  ffi-compiler (1.0.1)
38
40
  ffi (>= 1.0.0)
39
41
  rake
42
+ htmlbeautifier (1.4.2)
40
43
  io-console (0.6.0)
41
44
  irb (1.6.4)
42
45
  reline (>= 0.3.0)
@@ -52,6 +55,8 @@ GEM
52
55
  minitest (>= 5.0)
53
56
  ruby-progressbar
54
57
  multi_json (1.15.0)
58
+ nokogiri (1.15.2-arm64-darwin)
59
+ racc (~> 1.4)
55
60
  nokogiri (1.15.2-x86_64-darwin)
56
61
  racc (~> 1.4)
57
62
  nokogiri (1.15.2-x86_64-linux)
@@ -79,9 +84,8 @@ GEM
79
84
  unicode-display_width (>= 2.4.0, < 3.0)
80
85
  rubocop-ast (1.26.0)
81
86
  parser (>= 3.2.1.0)
82
- rubocop-shopify (2.12.0)
83
- rubocop (~> 1.44)
84
87
  ruby-progressbar (1.11.0)
88
+ sqlite3 (1.6.3-arm64-darwin)
85
89
  sqlite3 (1.6.3-x86_64-darwin)
86
90
  sqlite3 (1.6.3-x86_64-linux)
87
91
  unicode-display_width (2.4.2)
@@ -94,20 +98,26 @@ GEM
94
98
  webrick (~> 1.7.0)
95
99
 
96
100
  PLATFORMS
101
+ arm64-darwin-21
102
+ arm64-darwin-22
103
+ arm64-darwin-23
97
104
  x86_64-darwin-19
105
+ x86_64-darwin-20
98
106
  x86_64-darwin-22
107
+ x86_64-darwin-23
99
108
  x86_64-linux
100
109
 
101
110
  DEPENDENCIES
102
111
  bloops (~> 0.5)
103
112
  debug
113
+ diff-lcs
114
+ htmlbeautifier
104
115
  lacci!
105
116
  minitest (~> 5.0)
106
117
  minitest-reporters
107
118
  rake (~> 13.0)
108
119
  redcarpet
109
120
  rubocop (~> 1.21)
110
- rubocop-shopify
111
121
  scarpe!
112
122
  scarpe-components!
113
123
  yard
data/LICENSE.txt CHANGED
@@ -1,6 +1,12 @@
1
+ Scarpe, Lacci and Scarpe-Components code is available under the MIT license.
2
+
3
+ Bootswatch themes are made by Thomas Park and are released under MIT license.
4
+ Bootstrap Icons are by Bootstrap Icons and are released under MIT license.
5
+
6
+ =================
1
7
  The MIT License (MIT)
2
8
 
3
- Copyright (c) 2022 TODO: Write your name
9
+ Copyright (c) 2022-present, Scarpe team and contributors.
4
10
 
5
11
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
12
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  <img src="https://user-images.githubusercontent.com/7865030/217309905-7f25e3cf-1850-481d-811b-dfddea2df54a.png" width="200" height="200">
9
9
 
10
- "Scarpe" means shoes in Italian. "Scarpe" also means [Shoes](https://github.com/shoes/shoes-deprecated) in modern Ruby and webview!
10
+ "Scarpe" means shoes in Italian. "Scarpe" also means [Shoes](https://github.com/shoes/shoes-deprecated) in modern Ruby and Webview!
11
11
 
12
12
  Scarpe isn't feature complete with any version of Shoes (yet?). We're initially targeting [Shoes 3](https://github.com/scarpe-team/scarpe/wiki/ShoesImplementations.md), also called "Red Shoes."
13
13
 
@@ -15,7 +15,7 @@ Scarpe isn't feature complete with any version of Shoes (yet?). We're initially
15
15
 
16
16
  Shoes is an old library (really [several different ones](https://github.com/scarpe-team/scarpe/wiki/ShoesImplementations.md)) that let you build little local desktop computer programs, package them up and give copies to people. Imagine if you can write a tiny little Ruby program (e.g. sneak a peek at the next section) and then it would make a runnable app, opening a window in Ruby, where you could click buttons and play sounds and stuff.
17
17
 
18
- Scarpe is a rewrite of Shoes, because old Shoes doesn't really work any more. There have been a surprising number of rewrites of Shoes over the years -- people love it and miss having it around. This one is ours. Also it uses Webview.
18
+ Scarpe is a rewrite of Shoes, because old Shoes doesn't work any more. There have been a surprising number of rewrites of Shoes over the years -- people love it and miss having it around. This one is ours. By default it uses [Webview](https://github.com/webview/webview).
19
19
 
20
20
  ## Usage
21
21
 
@@ -52,14 +52,14 @@ More examples can be found in the [`examples` folder](https://github.com/scarpe-
52
52
 
53
53
  ## Wiki
54
54
 
55
- Explore more in the [Scarpe Wiki](https://github.com/scarpe-team/scarpe/wiki) for in-depth documentation, tutorials, and additional resources. Whether you're a new contributor or an experienced user, the Wiki provides valuable information to enhance your Scarpe experience.
55
+ Explore more in the [Scarpe Wiki](https://github.com/scarpe-team/scarpe/wiki) for in-depth documentation, tutorials, and additional resources. Whether you're a new user, a new contributor or an experienced user, the Wiki provides valuable information to enhance your Scarpe experience.
56
56
 
57
57
 
58
58
  ## Scarpe in Development
59
59
 
60
60
  ### Quickstart
61
61
 
62
- Scarpe requires [Ruby 3.2](https://www.ruby-lang.org/en/downloads/) or higher! You can use `rvm`, `rbenv` or your favourite version control just like normal.
62
+ Scarpe requires [Ruby 3.2](https://www.ruby-lang.org/en/downloads/) or higher! You can use `rvm`, `rbenv` or your favourite version control to install Ruby just like normal.
63
63
 
64
64
  This repo is where most of the action is happening right now, and to have the full Scarpe experience _today_ this is probably what you want to do.
65
65
 
@@ -71,7 +71,7 @@ brew install portaudio && bundle config build.bloops --with-portaudio-dir=$(brew
71
71
  # dependencies - Ubuntu Linux version
72
72
  sudo apt install libgtk-3-dev libwebkit2gtk-4.0-dev portaudio19-dev
73
73
 
74
- for any other linux or windows. please see the webview docs for your [platform](https://github.com/webview/webview#prerequisites)
74
+ for any other Linux or Windows please see the webview docs for your [platform](https://github.com/webview/webview#prerequisites)
75
75
 
76
76
  # get it
77
77
  git clone http://github.com/scarpe-team/scarpe
@@ -83,33 +83,71 @@ cd scarpe; bundle install
83
83
 
84
84
  If you are using Visual Studio Code, you can use this [extension](https://github.com/gintama91/Scarpe-Vscode-Extension). This extension simplifies the process of executing commands by eliminating the need to repeatedly type lengthy file paths, resulting in a more efficient and productive development experience.
85
85
 
86
- ### Finer details
86
+ ## Run Test
87
+
88
+ To Run all availble tests run command
89
+
90
+ ```
91
+ bundle exec rake ci_test
92
+
93
+ ```
94
+
95
+ ### To Run Tests separately
96
+
97
+ Scarpe is composed of [various sub-libraries](https://github.com/scarpe-team/scarpe/wiki/ShoesArchitecture.md). You can run some tests separately.
98
+
99
+ Run Lacci Tests:
100
+
101
+ ```
102
+ bundle exec rake lacci_test
103
+
104
+ ```
105
+
106
+ Run Scarpe-Components Tests:
107
+
108
+ ```
109
+ bundle exec rake component_test
110
+ ```
111
+
112
+ Run Scarpe Tests:
113
+
114
+ ```
115
+ bundle exec rake test
116
+ ```
117
+
118
+ Check HTML Output:
119
+
120
+ ```
121
+ bundle exec rake test:check_html_fixtures
122
+ ```
123
+
124
+ ### Finer Details
87
125
 
88
126
  First, clone the [main GitHub repository](https://github.com/scarpe-team/scarpe).
89
127
 
90
- `bundle install` dependencies like webview from the cloned directory in your Ruby of choice.
128
+ `bundle install` dependencies like Webview from the cloned directory in your Ruby of choice.
91
129
 
92
130
  You can run without Scarpe being installed by including its directory. For instance, from the "examples" directory you can run `ruby -I../lib -I../lacci/lib -rscarpe hello_world.rb`. You can also install Scarpe locally (`gem build scarpe.gemspec && gem install scarpe-0.1.0.gem`) or using a Gemfile with the "path" option for local Scarpe.
93
131
 
94
132
  Most commonly we are all using this command: `./exe/scarpe examples/button.rb --dev --debug`
95
133
 
96
- The `--dev` flag points to your local scarpe rather than an installed Scarpe gem.
134
+ The `--dev` flag points to your local Scarpe rather than an installed Scarpe gem.
97
135
 
98
136
  The `--debug` flag will dump a ton of useful information to the console if you want to see what's happening with your app.
99
137
 
100
- It's very early in the development process. If you'd like to help develop Scarpe, great! It would be useful to drop us a message/issue/PR on GitHub early on, so we know you're working in a particular area, and we can warn you if anybody else is currently doing so. We also have a Discord.
138
+ It's very early in Scarpe's development process. If you'd like to help develop Scarpe, great! It would be useful to drop us a message/issue/PR on GitHub early on, so we know you're working in a particular area, and we can warn you if anybody else is currently doing so. We also have a Discord.
101
139
 
102
140
  We'd love the help!
103
141
 
104
- If you want to quickly add a feature, you can use the `ruby scarpegen.rb` command. This command will generate the necessary files for you, along with a simple template and a set of questions to guide you through the process. By following these steps, you will be good to go!
142
+ If you want to quickly add a feature, you can use the `ruby scarpegen.rb` command. This command will generate the necessary files for you, along with a simple template and a set of questions to guide you through the process. By leveraging the `ruby scarpegen.rb` command and the provided resources, you can expedite the feature addition process and ensure a smoother development experience.
105
143
 
106
- By leveraging the `ruby scarpegen.rb` command and the provided resources, you can expedite the feature addition process and ensure a smoother development experience.
107
-
108
- ## Are we done yet?
144
+ ## Are We Done Yet?
109
145
 
110
146
  Great question! Right now we have a few key things we want to achieve. The first is passing all of the examples we can get our hands on. The second is passing [Hackety-Hack](https://github.com/hacketyhack/hacketyhack). We're manually keeping tabs on that here.
111
147
 
112
- ### Webview Display Service Examples Passing
148
+ But the short version is: no, we're far from done. Some Shoes features (e.g. multiple window support) may be very difficult to support with Webview at all. We're working on other ways to handle those features.
149
+
150
+ ### Examples Passing with the Webview Display Service
113
151
 
114
152
  ![](https://geps.dev/progress/30?dangerColor=800000&warningColor=ff9900&successColor=006600)
115
153
 
@@ -134,6 +172,31 @@ The SCARPE_TEST_CONTROL environment variable can contain a path to a test-contro
134
172
 
135
173
  If you run ./exe/scarpe --dev env, you can see all current environment settings.
136
174
 
175
+ ## Shoes-Spec
176
+
177
+ Pre-Scarpe Shoes didn't have specific test APIs or infrastructure. That was pretty standard for GUI libraries when it was written. Scarpe supports a test API called Shoes-Spec, and different display services tend to extend it.
178
+
179
+ The idea is that you write a standard Shoes application and then there's additional test code that runs once your application is running. Since different display services run in very different ways (e.g. Webview vs Wasm vs GTK+), the test code isn't necessarily in the same Ruby process as the Shoes application.
180
+
181
+ They're often packaged in .sspec files that look like this:
182
+
183
+ ~~~
184
+ ---
185
+ ----------- app code
186
+ Shoes.app do
187
+ @b = button "OK" do
188
+ @b.text = "Clicked"
189
+ end
190
+ end
191
+
192
+ ----------- test code
193
+ assert_equal "OK", button().text
194
+ button().trigger_click
195
+ assert_equal "Clicked", button().text
196
+ ~~~
197
+
198
+ See [https://github.com/scarpe-team/shoes-spec] for more details.
199
+
137
200
  ## More info
138
201
 
139
202
  * [Nobody Knows Shoes manual](https://github.com/whymirror/why-archive/raw/master/shoes/nobody-knows-shoes.pdf)
data/Rakefile CHANGED
@@ -4,6 +4,59 @@ require "bundler/gem_tasks"
4
4
  require "rake/testtask"
5
5
  require "rubocop/rake_task"
6
6
 
7
+ # Rakefile
8
+
9
+ task :ci_test do
10
+ puts "
11
+ \033[1;32;4;47mInstalling Dependencies\033[0m
12
+ "
13
+
14
+ system('brew install pkg-config portaudio')
15
+
16
+
17
+ puts "
18
+ \033[1;32;4;47mCheckout Code\033[0m
19
+ "
20
+ system('git checkout main')
21
+
22
+
23
+ puts "
24
+ \033[1;32;4;47mSetup Ruby and install Gems\033[0m
25
+ "
26
+ system('bundle install')
27
+
28
+ # Run tests
29
+
30
+ puts "
31
+ \033[1;32;4;47mRun Lacci Tests\033[0m
32
+ "
33
+ system('CI_RUN=true bundle exec rake lacci_test')
34
+
35
+ puts "
36
+ \033[1;32;4;47mRun Scarpe-Component Tests\033[0m
37
+ "
38
+
39
+ system('CI_RUN=true bundle exec rake component_test')
40
+
41
+
42
+ puts "
43
+ \033[1;32;4;47mRun Scarpe Tests\033[0m
44
+ "
45
+ system('CI_RUN=true bundle exec rake test')
46
+
47
+
48
+ puts "
49
+ \033[1;32;4;47mCheck HTML Output\033[0m
50
+ "
51
+ system('bundle exec rake test:check_html_fixtures')
52
+
53
+
54
+ puts "
55
+ \033[1;32;4;47mUpload Fail logs\033[0m
56
+ "
57
+ system('if [ ! -z "$(ls logger/test_failure*.out.log 2>/dev/null)" ]; then actions/upload-artifact@v4 --name "test failure logs" --path logger/test_failure*.out.log; fi')
58
+ end
59
+
7
60
  Rake::TestTask.new(:test) do |t|
8
61
  t.libs << "test"
9
62
  t.libs << "lib"
@@ -22,6 +75,20 @@ Rake::TestTask.new(:component_test) do |t|
22
75
  t.test_files = FileList["scarpe-components/test/**/test_*.rb"]
23
76
  end
24
77
 
78
+ namespace :test do
79
+ desc 'Regenerate HTML fixtures'
80
+ task :regenerate_html_fixtures do |t|
81
+ ENV['SELECTED_FILE'] = ARGV[-1] if ARGV[-1].include?(".rb")
82
+ load 'tasks/regenerate_html_fixtures.rb'
83
+ end
84
+
85
+ desc 'Check HTML fixtures against latest output'
86
+ task :check_html_fixtures do |t|
87
+ ENV['SELECTED_FILE'] = ARGV[-1] if ARGV[-1].include?(".rb")
88
+ load 'tasks/check_html_fixtures.rb'
89
+ end
90
+ end
91
+
25
92
  RuboCop::RakeTask.new
26
93
 
27
94
  task default: [:test, :lacci_test, :component_test]
@@ -0,0 +1,8 @@
1
+ Shoes.app do
2
+ para "Anything:",size:"30px"
3
+ lorem = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim."
4
+ @manuscript = edit_box(lorem, width: "100%", font:"italic normal bold 25px 'Times New Roman', serif;", tooltip:"This is a tooltip") do |box|
5
+ @char_count.replace("#{box.text.length} characters")
6
+ end
7
+ @char_count = para "#{@manuscript.text.length} characters" ,size:"20px"
8
+ end
@@ -0,0 +1,7 @@
1
+ Shoes.app do
2
+
3
+ para "This text have kerning applied to it", kerning:10, size:18
4
+
5
+ para "This is normal text for reference", size:18
6
+
7
+ end
@@ -0,0 +1,11 @@
1
+ Shoes.app(width: 300, height: 50) do
2
+ stack height: 50 do
3
+ para "Border is on top of text"
4
+ border yellow, strokewidth: 4
5
+ end
6
+
7
+ stack do
8
+ para "This border is also on top of text"
9
+ border blue, strokewidth: 4
10
+ end
11
+ end
data/examples/check.rb CHANGED
@@ -5,6 +5,8 @@ Shoes.app do
5
5
  flow { check; para "Kin-Dza-Dza by Georgi Danelia" }
6
6
  flow { check; para "Children of Heaven by Majid Majidi" }
7
7
  @btn = check; para "The White Balloon by Jafar Panahi"
8
+ @p = para ""
9
+ @btn.click { @p.replace("Clicked! Yay!") }
8
10
  flow do
9
11
  button "Mark me" do
10
12
  @btn.checked = true
@@ -1,3 +1,6 @@
1
+ # html_ci: false
2
+ # This is due to a button rendering issue
3
+
1
4
  Shoes.app do
2
5
  stack do
3
6
  title "Downloading Google image", size: 16
@@ -0,0 +1,15 @@
1
+ Shoes.app(title: "Finland", width: 360, height: 220, ) do
2
+ background blue
3
+ stack width: 100, height: 80 do
4
+ background white
5
+ end
6
+ stack width: 100, height: 80, top: 140, left: 0 do
7
+ background white
8
+ end
9
+ stack width: 200, height: 80, top: 0, left: 160 do
10
+ background white
11
+ end
12
+ stack width: 200, height: 80, top: 140, left: 160 do
13
+ background white
14
+ end
15
+ end
@@ -0,0 +1,11 @@
1
+ Shoes.app(height: 300) do
2
+ stack width: 0.33, height: 1.0 do
3
+ background green
4
+ end
5
+ stack width: 0.34, height: 1.0 do
6
+ background white
7
+ end
8
+ stack width: 0.33, height: 1.0 do
9
+ background red
10
+ end
11
+ end
@@ -0,0 +1,14 @@
1
+ Shoes.app(title: "Mauritius", height: 300) do
2
+ stack width: 1.0, height: 0.25 do
3
+ background red
4
+ end
5
+ stack width: 1.0, height: 0.25 do
6
+ background blue
7
+ end
8
+ stack width: 1.0, height: 0.25 do
9
+ background yellow
10
+ end
11
+ stack width: 1.0, height: 0.25 do
12
+ background green
13
+ end
14
+ end
@@ -0,0 +1,17 @@
1
+ Shoes.app do
2
+
3
+ para "This is arial" ,size:"40px" , font:"arial"
4
+
5
+ para "This is time new roman" , size:"40px", font:"'Times New Roman'"
6
+
7
+ para "this is cursive", font: "cursive", size:"40px"
8
+
9
+ para "this is pacifico", font: "'Monaco'", size:"40px"
10
+
11
+ para "this is pacifico with quotes which is same", font: "Monaco", size:"40px"
12
+
13
+ para "This is helvetica", font: "Helvetica", size:"40px"
14
+
15
+ para "This is 'Trebuchet MS'", font: "'Trebuchet MS'", size:"40px"
16
+
17
+ end
@@ -0,0 +1,9 @@
1
+ Shoes.app do
2
+
3
+ para "The family is not in font so it will change but size won't" , font:"italic bold 30px" , family:"cursive", size: 20
4
+
5
+ para "because only things things who aren't present in font " , font:"bold", size: "16px"
6
+
7
+ para "will be used as their specific property", font: "cursive italic 20px ", font_weight:"bold"
8
+
9
+ end
data/examples/gen.rb CHANGED
@@ -1,4 +1,8 @@
1
1
  # frozen_string_literal: true
2
+
3
+ # html_ci: false
4
+ # This is due to a button rendering issue
5
+
2
6
  require 'erb'
3
7
 
4
8
  class ScarpeGenerator
@@ -0,0 +1,10 @@
1
+ #!ruby
2
+ Shoes.app do
3
+ @slot = stack { para 'Good Morning' }
4
+ timer 3 do
5
+ @slot.append do
6
+ title "Breaking News"
7
+ tagline "Astronauts arrested for space shuttle DUI."
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,12 @@
1
+ #!ruby
2
+ Shoes.app do
3
+ s = stack width: 200, height: 200 do
4
+ background red
5
+ hover do
6
+ s.clear { background blue }
7
+ end
8
+ leave do
9
+ s.clear { background red }
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,5 @@
1
+ #!ruby
2
+ Shoes.app do
3
+ background black
4
+ background white, width: 50
5
+ end
@@ -0,0 +1,8 @@
1
+ #!ruby
2
+ Shoes.app(title: "White Circle",
3
+ width: 200, height: 200, resizable: false) {
4
+ background black
5
+ fill white
6
+ oval top: 20, left: 20, radius: 160
7
+ }
8
+
@@ -0,0 +1,9 @@
1
+ #!ruby
2
+ Shoes.app do
3
+ stack width: 60 do
4
+ border black, strokewidth: 5
5
+ stack width: 50 do
6
+ para "=^.^=", stroke: green
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,5 @@
1
+ if Shoes::FONTS.include? "Helvetica"
2
+ alert "Helvetica is available on this system."
3
+ else
4
+ alert "You do not have the Helvetica font."
5
+ end
@@ -0,0 +1,2 @@
1
+ #!ruby
2
+ ask("Please, enter your name:")
@@ -0,0 +1,5 @@
1
+ #!ruby
2
+ backcolor = ask_color("Pick a background")
3
+ Shoes.app do
4
+ background backcolor
5
+ end
@@ -0,0 +1,5 @@
1
+ #!ruby
2
+ filename = ask_open_file
3
+ Shoes.app do
4
+ para File.read(filename)
5
+ end
@@ -0,0 +1,2 @@
1
+ #!ruby
2
+ save_to = ask_save_folder
@@ -0,0 +1,4 @@
1
+ #!ruby
2
+ if confirm("Draw a circle?")
3
+ Shoes.app{ oval top: 0, left: 0, radius: 50 }
4
+ end
@@ -0,0 +1,2 @@
1
+ #!ruby
2
+ debug("Running Shoes on " + RUBY_PLATFORM)
@@ -0,0 +1,3 @@
1
+ #!ruby
2
+
3
+ info("You just ran the info example on Shoes #{Shoes::RELEASE_NAME}.")
@@ -0,0 +1,9 @@
1
+ #!ruby
2
+ Shoes.app do
3
+ button "OK!" do
4
+ append { para "Well okay then." }
5
+ end
6
+ button "Are you sure?" do
7
+ append { para "Your confidence is inspiring." }
8
+ end
9
+ end