scribo 1.0.39 → 1.0.41
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/.github/workflows/gem-push.yml +11 -0
- data/.gitignore +12 -0
- data/.reek.yml +8 -0
- data/.rubocop.yml +44 -0
- data/.rubocop_todo.yml +129 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +33 -0
- data/Gemfile.lock +397 -0
- data/TODO.md +32 -0
- data/app/assets/images/scribo/.keep +0 -0
- data/app/models/scribo/content.rb +3 -3
- data/app/services/scribo/site_import_service.rb +1 -1
- data/bin/importmap +4 -0
- data/bin/rails +14 -0
- data/bin/rake +29 -0
- data/bin/rubocop +29 -0
- data/cli/.gitignore +2 -0
- data/cli/scribo.cr +103 -0
- data/cli/shard.lock +6 -0
- data/cli/shard.yml +18 -0
- data/db/migrate/20240603090353_add_parent_id_to_scribo_contents.rb +5 -0
- data/db/migrate/20240625131154_create_scribo_content_hierarchies.rb +16 -0
- data/docs/content.md +33 -0
- data/docs/editor.png +0 -0
- data/docs/features.md +71 -0
- data/docs/ide.md +17 -0
- data/docs/import_export.md +7 -0
- data/docs/liquid.md +59 -0
- data/favicon.ico +0 -0
- data/frontend/images/.DS_Store +0 -0
- data/icon.png +0 -0
- data/lib/scribo/version.rb +1 -1
- data/lib/scribo.rb +1 -1
- data/logo.svg +1 -0
- data/scribo.gemspec +54 -0
- data/vendor/javascript/@hotwired--stimulus.js +2 -0
- data/vendor/javascript/painterro.js +2 -0
- data/vendor/javascript/sortablejs.js +134 -0
- data/yarn.lock +6775 -0
- metadata +37 -2
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: scribo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.41
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom de Grunt
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-06-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ancestry
|
|
@@ -424,10 +424,20 @@ executables: []
|
|
|
424
424
|
extensions: []
|
|
425
425
|
extra_rdoc_files: []
|
|
426
426
|
files:
|
|
427
|
+
- ".github/workflows/gem-push.yml"
|
|
428
|
+
- ".gitignore"
|
|
429
|
+
- ".reek.yml"
|
|
430
|
+
- ".rubocop.yml"
|
|
431
|
+
- ".rubocop_todo.yml"
|
|
432
|
+
- CODE_OF_CONDUCT.md
|
|
433
|
+
- Gemfile
|
|
434
|
+
- Gemfile.lock
|
|
427
435
|
- MIT-LICENSE
|
|
428
436
|
- README.md
|
|
429
437
|
- Rakefile
|
|
438
|
+
- TODO.md
|
|
430
439
|
- app/assets/config/scribo_manifest.js
|
|
440
|
+
- app/assets/images/scribo/.keep
|
|
431
441
|
- app/assets/images/scribo/Unknown-1.svg
|
|
432
442
|
- app/assets/images/scribo/file.svg
|
|
433
443
|
- app/assets/images/scribo/file_icons.svg
|
|
@@ -1050,12 +1060,31 @@ files:
|
|
|
1050
1060
|
- app/views/scribo/shared/_entry.html.slim
|
|
1051
1061
|
- app/views/scribo/shared/_ide.html.slim
|
|
1052
1062
|
- app/views/scribo/shared/_tree-view.html.slim
|
|
1063
|
+
- bin/importmap
|
|
1064
|
+
- bin/rails
|
|
1065
|
+
- bin/rake
|
|
1066
|
+
- bin/rubocop
|
|
1067
|
+
- cli/.gitignore
|
|
1068
|
+
- cli/scribo.cr
|
|
1069
|
+
- cli/shard.lock
|
|
1070
|
+
- cli/shard.yml
|
|
1053
1071
|
- config/importmap.rb
|
|
1054
1072
|
- config/locales/en.yml
|
|
1055
1073
|
- config/routes.rb
|
|
1056
1074
|
- db/migrate/20200123095630_initial_scribo.rb
|
|
1057
1075
|
- db/migrate/20220919124119_add_ancestry_to_scribo_contents.rb
|
|
1058
1076
|
- db/migrate/20220919124749_remove_parent_id_from_scribo_contents.rb
|
|
1077
|
+
- db/migrate/20240603090353_add_parent_id_to_scribo_contents.rb
|
|
1078
|
+
- db/migrate/20240625131154_create_scribo_content_hierarchies.rb
|
|
1079
|
+
- docs/content.md
|
|
1080
|
+
- docs/editor.png
|
|
1081
|
+
- docs/features.md
|
|
1082
|
+
- docs/ide.md
|
|
1083
|
+
- docs/import_export.md
|
|
1084
|
+
- docs/liquid.md
|
|
1085
|
+
- favicon.ico
|
|
1086
|
+
- frontend/images/.DS_Store
|
|
1087
|
+
- icon.png
|
|
1059
1088
|
- lib/generators/scribo/install_generator.rb
|
|
1060
1089
|
- lib/generators/scribo/tailwind_config_generator.rb
|
|
1061
1090
|
- lib/generators/scribo/templates/config/initializers/scribo.rb
|
|
@@ -1107,6 +1136,12 @@ files:
|
|
|
1107
1136
|
- lib/scribo/utility.rb
|
|
1108
1137
|
- lib/scribo/version.rb
|
|
1109
1138
|
- lib/tasks/scribo_tasks.rake
|
|
1139
|
+
- logo.svg
|
|
1140
|
+
- scribo.gemspec
|
|
1141
|
+
- vendor/javascript/@hotwired--stimulus.js
|
|
1142
|
+
- vendor/javascript/painterro.js
|
|
1143
|
+
- vendor/javascript/sortablejs.js
|
|
1144
|
+
- yarn.lock
|
|
1110
1145
|
homepage: https://gitlab.com/tdegrunt/scribo
|
|
1111
1146
|
licenses:
|
|
1112
1147
|
- MIT
|