coplan-engine 0.1.0 → 0.1.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ea64116961d118862ba30a1b170bbfbc9ccbc78705764741eab7432e951e12f
|
|
4
|
+
data.tar.gz: b00c04bf52745d7f8b4d8ab573fc038e4ea8fd7f08a6c557da849429825fb211
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 158e16571dd1c8688beb609ec4ca1e4ae6d817f03cee00d7468d47ffb0dd10fbd3a579532a36660517310d0b01da6c9f7ca9034f5db909602ec5f9e03bf1ceeb
|
|
7
|
+
data.tar.gz: 304da6941f7ed2f28c937273ca5ccd33c56ff7acfad69833199e5dc8e7fe3a7149cc9b79f22dd2675a5ae66e2484526c299097f33a56601e0642a122284517f5
|
|
@@ -12,7 +12,10 @@
|
|
|
12
12
|
<body>
|
|
13
13
|
<nav class="site-nav">
|
|
14
14
|
<div class="site-nav__inner">
|
|
15
|
-
<%= link_to
|
|
15
|
+
<%= link_to coplan.root_path, class: "site-nav__brand" do %>
|
|
16
|
+
<%= image_tag "/coplan-logo-sm.png", alt: "CoPlan", class: "site-nav__logo" %>
|
|
17
|
+
CoPlan
|
|
18
|
+
<% end %>
|
|
16
19
|
<ul class="site-nav__links">
|
|
17
20
|
<% if signed_in? %>
|
|
18
21
|
<li><%= link_to "Plans", coplan.plans_path %></li>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
class ExpandContentMarkdownToMediumtext < ActiveRecord::Migration[8.0]
|
|
2
|
+
def up
|
|
3
|
+
change_column :coplan_plan_versions, :content_markdown, :text, limit: 16.megabytes - 1, null: false
|
|
4
|
+
end
|
|
5
|
+
|
|
6
|
+
def down
|
|
7
|
+
change_column :coplan_plan_versions, :content_markdown, :text, null: false
|
|
8
|
+
end
|
|
9
|
+
end
|
data/lib/coplan/version.rb
CHANGED
data/lib/coplan.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: coplan-engine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Block
|
|
@@ -214,6 +214,7 @@ files:
|
|
|
214
214
|
- config/importmap.rb
|
|
215
215
|
- config/routes.rb
|
|
216
216
|
- db/migrate/20260226200000_create_coplan_schema.rb
|
|
217
|
+
- db/migrate/20260313210000_expand_content_markdown_to_mediumtext.rb
|
|
217
218
|
- lib/coplan.rb
|
|
218
219
|
- lib/coplan/configuration.rb
|
|
219
220
|
- lib/coplan/engine.rb
|