sitepress-rails 4.0.5 → 4.0.8

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: 768e64a38091a5087d3abd0ba5b1447828bb495f134b2cdcea072a1d77ccf706
4
- data.tar.gz: 34a4630e81bcf65f6b77f2ef0cfaca5ee0d2fa1ad56fad90fa4f67622b64bd02
3
+ metadata.gz: efe41283d87d1ffa4fb1fe0f07be2d15b9840a497cad726820be67c89977fbe4
4
+ data.tar.gz: 1dcf419f4d2372e95314a6d0fcfeddcb2cb56dd93be7bf37de0436c36cb22256
5
5
  SHA512:
6
- metadata.gz: 614aa9ad23721a172cbcb77f054936a3c388cc03f6fa8664188ddd7402500bc6e1e8cf796010d60181c11821d23e19aa86ab2357f8834a8a0043a260b5a8cbd5
7
- data.tar.gz: 3ee5f14a5ce1baae00c0ad6fbff3c6410e540acd5d1dc3d78791dd5fe6b78ea459bed95466d6de08dc301cc26b123a03a6d5a0df17f3a88051aaf80cfd3eb6d7
6
+ metadata.gz: a41a7cfa3221ce4544bd5678e16f834b1299dec6761fceb2438f7c87475e0199340ebbb464dfdd695b7b58b7b0c5e2adde205981b159f245257118ea97a67b32
7
+ data.tar.gz: 7a0bb60bb7ed40aa0c3b204eb90872fc69ed62962d0897a0848e8985342fc78c33c115a2c877a46a1f3dbc61e9ab113fcaf0ea3067192daef09a2ee0a256a265
@@ -54,11 +54,8 @@ module Sitepress
54
54
  app.config.cache_classes
55
55
  end
56
56
 
57
- # Setup Sitepress to handle Rails extensions.
58
- ActiveSupport.on_load(:action_view) do
59
- ActiveSupport.on_load(:after_initialize) do
60
- Sitepress::Path.handler_extensions = ActionView::Template::Handlers.extensions
61
- end
57
+ config.to_prepare do
58
+ Sitepress::Path.handler_extensions = ActionView::Template::Handlers.extensions
62
59
  end
63
60
  end
64
61
 
@@ -11,7 +11,6 @@ module Sitepress
11
11
  autoload :Controller, "sitepress/renderers/controller"
12
12
  autoload :Server, "sitepress/renderers/server"
13
13
  end
14
- autoload :Rendition, "sitepress/rendition"
15
14
  autoload :RouteConstraint, "sitepress/route_constraint"
16
15
  module BuildPaths
17
16
  autoload :RootPath, "sitepress/build_paths/root_path"
@@ -17,7 +17,7 @@ module Sitepress
17
17
  included do
18
18
  rescue_from Sitepress::ResourceNotFound, with: :resource_not_found
19
19
  helper Sitepress::Engine.helpers
20
- helper_method :current_page, :site, :page_rendition
20
+ helper_method :current_page, :site
21
21
  around_action :ensure_site_reload
22
22
  end
23
23
 
@@ -43,56 +43,12 @@ module Sitepress
43
43
  end
44
44
  end
45
45
 
46
- # Renders the markup within a resource that can be rendered.
47
- def page_rendition(resource, layout: nil)
48
- Rendition.new(resource).tap do |rendition|
49
- rendition.layout = layout
50
- pre_render rendition
51
- end
52
- end
53
-
54
46
  # If a resource has a handler (e.g. erb, haml, etc.) we use the Rails renderer to
55
47
  # process templates, layouts, partials, etc. To keep the whole rendering process
56
48
  # contained in a way that the end user can override, we coupled the resource, source
57
49
  # and output within a `Rendition` object so that it may be processed via hooks.
58
50
  def render_resource_with_handler(resource)
59
- # Add the resource path to the view path so that partials can be rendered
60
- append_relative_partial_path resource
61
-
62
- rendition = page_rendition(resource, layout: controller_layout(resource))
63
-
64
- # Fire a callback in the controller in case anybody needs it.
65
- process_rendition rendition
66
-
67
- # Now we finally render the output of the processed rendition to the client.
68
- post_render rendition
69
- end
70
-
71
- # This is where the actual rendering happens for the page source in Rails.
72
- def pre_render(rendition)
73
- original_resource = @current_resource
74
- begin
75
- # This sets the `current_page` and `current_resource` variable equal to the given resource.
76
- @current_resource = rendition.resource
77
- rendition.output = render_to_string inline: rendition.source,
78
- type: rendition.handler,
79
- layout: rendition.layout
80
- ensure
81
- @current_resource = original_resource
82
- end
83
- end
84
-
85
- # This is to be used by end users if they need to do any post-processing on the rendering page.
86
- # For example, the user may use Nokogiri to parse static HTML pages and hook it into the asset pipeline.
87
- # They may also use tools like `HTMLPipeline` to process links from a markdown renderer.
88
- def process_rendition(rendition)
89
- # Do nothing unless the user extends this method.
90
- end
91
-
92
- # Send the inline rendered, post-processed string into the Rails rendering method that actually sends
93
- # the output to the end-user as a web response.
94
- def post_render(rendition)
95
- render body: rendition.output, content_type: rendition.mime_type
51
+ render resource, layout: resource_layout(resource)
96
52
  end
97
53
 
98
54
  # A reference to the current resource that's being requested.
@@ -155,40 +111,25 @@ module Sitepress
155
111
  # Returns the current layout for the inline Sitepress renderer. This is
156
112
  # exposed via some really convoluted private methods inside of the various
157
113
  # versions of Rails, so I try my best to hack out the path to the layout below.
158
- def controller_layout(resource)
159
- private_layout_method = self.method(:_layout)
160
- layout =
161
- if Rails.version >= "6"
162
- private_layout_method.call lookup_context, resource_rails_formats(resource)
163
- elsif Rails.version >= "5"
164
- private_layout_method.call resource_rails_formats(resource)
114
+ def resource_layout(resource)
115
+ resource.data.fetch "layout" do
116
+ case template = find_layout(formats: resource.node.formats)
117
+ when ActionView::Template
118
+ template.virtual_path
165
119
  else
166
- private_layout_method.call
120
+ template
167
121
  end
168
-
169
- if layout.instance_of? String # Rails 4 and 5 return a string from above.
170
- layout
171
- elsif layout # Rails 3 and older return an object that gives us a file name
172
- File.basename(layout.identifier).split('.').first
173
- else
174
- # If none of the conditions are met, then no layout was
175
- # specified, so nil is returned.
176
- nil
177
122
  end
178
123
  end
179
124
 
180
- # Rails 5 requires an extension, like `:html`, to resolve a template. This
181
- # method returns the intersection of the formats Rails supports from Mime::Types
182
- # and the current page's node formats. If nothing intersects, HTML is returned
183
- # as a default.
184
- def resource_rails_formats(resource)
185
- node_formats = resource.node.formats
186
- supported_formats = node_formats & Mime::EXTENSION_LOOKUP.keys
187
-
188
- if supported_formats.empty?
189
- DEFAULT_PAGE_RAILS_FORMATS
125
+ # For whatever reason, Rails can't stablize this API so we need to check
126
+ # the version of Rails to make the right call and stablize it.
127
+ def find_layout(formats:)
128
+ case Rails::VERSION::MAJOR
129
+ when 8
130
+ _layout(lookup_context, formats, lookup_context.prefixes)
190
131
  else
191
- supported_formats.map?(&:to_sym)
132
+ _layout(lookup_context, formats)
192
133
  end
193
134
  end
194
135
 
@@ -3,15 +3,4 @@ class SiteController < Sitepress::SiteController
3
3
  def show
4
4
  render_resource current_resource
5
5
  end
6
-
7
- protected
8
-
9
- # This is to be used by end users if they need to do any post-processing on the rendering page.
10
- # For example, the user may use Nokogiri to parse static HTML pages and hook it into the asset pipeline.
11
- # They may also use tools like `HTMLPipeline` to process links from a markdown renderer.
12
- #
13
- # For example, the rendition could be modified via `Nokogiri::HTML5::DocumentFragment(rendition)`.
14
- def process_rendition(rendition)
15
- # Do nothing unless the user extends this method.
16
- end
17
6
  end
@@ -12,8 +12,10 @@ module Sitepress
12
12
  end
13
13
 
14
14
  def append_sitepress_path_to_tailwind_config
15
- inject_into_file 'config/tailwind.config.js', ",\n './app/content/**/*.{erb,haml,html,slim,rb}'",
16
- after: " './app/views/**/*.{erb,haml,html,slim}'"
15
+ if File.exist? 'config/tailwind.config.js'
16
+ inject_into_file 'config/tailwind.config.js', ",\n './app/content/**/*.{erb,haml,html,slim,rb}'",
17
+ after: " './app/views/**/*.{erb,haml,html,slim}'"
18
+ end
17
19
  end
18
20
  end
19
21
  end
@@ -4,22 +4,34 @@ title: Getting started with Sitepress in Rails
4
4
 
5
5
  <style>
6
6
  .sitepress {
7
- max-width: 90%;
7
+ max-width: 40rem;
8
+ margin: 4rem auto;
9
+ font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
10
+ }
11
+ .sitepress .logo {
12
+ margin: 4rem auto;
13
+ display: block;
14
+ }
15
+ .sitepress p {
16
+ line-height: 1.5;
8
17
  }
9
18
  .sitepress h1 {
10
- font-weight: bold;
19
+ font-weight: 800;
11
20
  font-size: 3rem;
12
21
  margin-bottom: 4rem;
22
+ text-align: center;
13
23
  }
14
24
  .sitepress h2 {
15
25
  font-weight: bold;
16
26
  font-size: 1.5rem;
27
+ margin-top: 2rem;
17
28
  }
18
29
  .sitepress * {
19
30
  margin-top: 1rem;
20
31
  }
21
32
  .sitepress code {
22
33
  font-family: monospace;
34
+ background: #efefef;
23
35
  font-size: 1rem;
24
36
  }
25
37
  .sitepress a {
@@ -40,4 +52,16 @@ title: Getting started with Sitepress in Rails
40
52
 
41
53
  <h2>Documentation</h2>
42
54
  <p>Check out the <a href="https://sitepress.cc">Sitepress website</a> for help on getting started and documentation. Since Sitepress is also built on top of Rails, most of the <a href="https://guides.rubyonrails.org/action_view_helpers.html">Rails view helpers</a> work too.</p>
43
- </article>
55
+
56
+ <a href="https://sitepress.cc">
57
+ <svg class="logo" width="260px" height="260px" viewBox="0 0 895 895" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
58
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
59
+ <g id="logo" fill="#573D2B">
60
+ <path d="M334.72,537.93 C325.82,530.6 313.41,526.88 297.83,526.88 L254.05,526.88 L254.05,618.4 L297.84,618.4 C313.41,618.4 325.84,614.63 334.72,607.2 C343.6,599.77 348.01,588.2 348.01,572.49 C348.01,556.78 343.54,545.2 334.72,537.93 L334.72,537.93 Z" id="Shape"></path>
61
+ <path d="M859.29,274.59 C770.211759,62.9463102 535.248488,-46.7589164 315.795351,20.8303235 C96.3422149,88.4195635 -36.1856795,311.308174 9.24445457,536.395018 C54.6745886,761.481862 263.278739,915.518494 491.767697,892.697877 C720.256655,869.87726 894.274848,677.625748 894.29,448 C894.373576,388.434111 882.470683,329.460375 859.29,274.59 L859.29,274.59 Z M573.53,155.3 C573.53,150.7 576.17,148.06 580.77,148.06 L684.32,148.06 C688.73,148.06 691.27,150.59 691.27,155.01 C691.27,159.79 688.74,162.54 684.32,162.54 L588,162.54 L588,249 L632.54,249 C636.95,249 639.48,251.74 639.48,256.53 C639.48,260.94 636.95,263.48 632.54,263.48 L588,263.48 L588,350.23 L684.32,350.23 C688.73,350.23 691.27,352.97 691.27,357.76 C691.27,362.17 688.74,364.71 684.32,364.71 L580.77,364.71 C576.17,364.71 573.53,362.07 573.53,357.47 L573.53,155.3 Z M401.53,89.3 C402.779293,87.9227726 404.571684,87.1655789 406.43,87.23 L553.75,87.23 C558.27,87.23 560.53,89.3666667 560.53,93.64 C560.53,98.4133333 558.27,100.8 553.75,100.8 L487.06,100.8 L487.06,355.91 C487.06,360.43 484.8,362.69 480.28,362.69 C475.76,362.69 473.5,360.43 473.5,355.91 L473.5,100.83 L406.43,100.83 C404.571176,100.897181 402.777669,100.139516 401.53,98.76 C399.018254,96.1222984 399.018254,91.9777016 401.53,89.34 L401.53,89.3 Z M361.08,93.63 C361.08,89.3633333 363.34,87.2266667 367.86,87.22 C372.38,87.2133333 374.64,89.35 374.64,93.63 L374.64,355.91 C374.64,360.43 372.38,362.69 367.86,362.69 C363.34,362.69 361.08,360.43 361.08,355.91 L361.08,93.63 Z M208.57,329.63 C210.15,327.79 211.7,326.89 213.29,326.89 C214.88,326.89 216.79,328.24 219.49,331.55 C221.62,334.16 224.09,337.02 226.84,340.05 C229.42,342.91 233.97,345.62 240.34,348.11 C247.586888,350.800137 255.270834,352.119225 263,352 C278.29,352 290,348.13 297.82,340.5 C305.64,332.87 309.58,321.57 309.58,306.88 C309.58,297.17 307.85,288.88 304.43,282.35 C301.410563,276.249269 296.784618,271.087433 291.05,267.42 C285.097567,263.784066 278.78788,260.768283 272.22,258.42 L251.58,251.15 C244.726443,248.889218 238.156396,245.84579 232,242.08 C225.705868,238.108684 220.588935,232.525633 217.18,225.91 C213.45,218.97 211.56,210.38 211.56,200.39 C211.56,190.23 213.44,181.39 217.16,174.03 C220.484889,167.084479 225.841413,161.312965 232.52,157.48 C238.378086,154.162981 244.677689,151.694992 251.23,150.15 C257.679927,148.734499 264.266659,148.036922 270.87,148.07 C281.863142,147.943398 292.800246,149.653588 303.23,153.13 C313.87,156.83 318.83,160.66 318.83,165.2 C318.754645,167.219913 317.98465,169.151963 316.65,170.67 C315.09,172.62 313.39,173.6 311.6,173.6 C310.78,173.6 309.49,173.37 304.51,170.6 C300.133975,168.352176 295.540237,166.556229 290.8,165.24 C284.225834,163.369844 277.414361,162.467037 270.58,162.56 C263.351008,162.469822 256.146813,163.422972 249.19,165.39 C243.12,167.2 237.67,171.04 233.01,176.8 C228.35,182.56 226.01,190.16 226.01,199.54 C226.01,207.46 227.72,214.2 231.09,219.54 C234.303387,224.772292 238.912858,229.004278 244.4,231.76 C250.482431,234.769407 256.763789,237.358797 263.2,239.51 C270.06,241.83 277.09,244.44 284.1,247.26 C291.011648,250.019216 297.587203,253.555254 303.7,257.8 C309.78,262.06 314.76,268.35 318.48,276.5 C322.2,284.65 324.04,294.5 324.04,305.98 C324.04,326.24 318.59,341.56 307.84,351.52 C297.09,361.48 282.53,366.45 264.45,366.45 C256.023647,366.517248 247.635543,365.310279 239.57,362.87 C231.93,360.49 225.72,357.61 221.11,354.3 C217.052927,351.515289 213.430344,348.145445 210.36,344.3 C207.64,340.72 206.36,337.7 206.36,335.09 C206.41612,333.079377 207.205725,331.158715 208.58,329.69 L208.57,329.63 Z M128.83,453.11 L296.96,413.11 C299.21742,412.571572 301.590658,413.277552 303.186737,414.962302 C304.782816,416.647052 305.359576,419.054959 304.7,421.28 L296,450.51 L453.2,413.11 C455.45742,412.571572 457.830658,413.277552 459.426737,414.962302 C461.022816,416.647052 461.599576,419.054959 460.94,421.28 L452.27,450.51 L609.47,413.11 C611.72742,412.571572 614.100658,413.277552 615.696737,414.962302 C617.292816,416.647052 617.869576,419.054959 617.21,421.28 L608.54,450.51 L765.74,413.11 C767.999705,412.574102 770.373657,413.284449 771.967611,414.973462 C773.561565,416.662475 774.133361,419.073551 773.467611,421.298462 C772.80186,423.523373 770.999705,425.224102 768.74,425.76 L600.61,465.76 C598.35258,466.298428 595.979342,465.592448 594.383263,463.907698 C592.787184,462.222948 592.210424,459.815041 592.87,457.59 L601.54,428.36 L444.34,465.76 C442.08258,466.298428 439.709342,465.592448 438.113263,463.907698 C436.517184,462.222948 435.940424,459.815041 436.6,457.59 L445.27,428.36 L288.07,465.76 C285.81258,466.298428 283.439342,465.592448 281.843263,463.907698 C280.247184,462.222948 279.670424,459.815041 280.33,457.59 L289,428.36 L131.8,465.76 C131.305299,465.878067 130.798593,465.93847 130.29,465.94 C126.983263,465.951866 124.194638,463.479226 123.810649,460.194838 C123.426659,456.910451 125.569705,453.861232 128.79,453.11 L128.83,453.11 Z M219.36,568.38 C219.36,586.66 214.64,600.38 205.36,609.03 C196.08,617.68 183.68,622.03 168.41,622.03 L131.51,622.03 L131.51,690.84 C131.51,695.17 128.92,697.76 124.59,697.76 C120.26,697.76 117.67,695.17 117.67,690.84 L117.67,518.64 C117.67,516.86 118.32,512.64 124.31,511.98 L124.58,511.98 L168.38,511.98 C183.63,511.98 196.06,516.32 205.32,524.89 C214.58,533.46 219.32,547.14 219.32,565.43 L219.36,568.38 Z M360.87,727.12 C361.533457,728.352283 361.903078,729.721252 361.95,731.12 C362.033205,733.000791 361.322464,734.830022 359.991243,736.161243 C358.660022,737.492464 356.830791,738.203205 354.95,738.12 C353.896221,738.11813 352.861519,737.838761 351.95,737.31 C350.899467,736.658391 350.007755,735.780345 349.34,734.74 C348.62,733.74 348.06,732.9 347.65,732.28 L347.49,731.96 L346.31,728.7 C345.91,727.92 345.65,727.45 345.49,727.17 L345.26,727.17 L344.84,726.35 L296.63,632.35 L254.05,632.35 L254.05,731.15 C254.05,735.65 251.57,738.15 247.05,738.15 C242.53,738.15 240.05,735.67 240.05,731.15 L240.05,519.6 C240.05,517.4 240.93,513.6 246.86,512.94 L297.78,512.94 C316.68,512.94 332.23,517.65 344,526.94 C355.77,536.23 361.89,551.64 361.89,572.49 C361.89,606.93 344.98,626.76 311.64,631.49 L360.87,727.12 Z M459,644.64 C463.246667,644.64 465.373333,647.016667 465.38,651.77 C465.38,656.023333 463.253333,658.15 459,658.15 L399,658.15 L399,775.22 L525.79,775.22 C530.043333,775.22 532.17,777.596667 532.17,782.35 C532.17,786.603333 530.043333,788.73 525.79,788.73 L392.2,788.73 C387.7,788.73 385.45,786.48 385.45,781.98 L385.45,521.19 C385.45,516.69 387.7,514.44 392.2,514.44 L525.79,514.44 C530.043333,514.44 532.17,516.566667 532.17,520.82 C532.17,525.573333 530.043333,527.95 525.79,527.95 L399,527.95 L399,644.65 L459,644.64 Z M643.77,724.49 C632.69,734.74 617.57,739.93 598.83,739.93 C590.082311,740.000953 581.374084,738.750178 573,736.22 C565.08,733.75 558.65,730.76 553.88,727.34 C549.685777,724.461626 545.941701,720.977041 542.77,717 C540.01,713.36 538.67,710.33 538.67,707.74 C538.734283,705.789092 539.509619,703.928997 540.85,702.51 C542.39,700.72 543.85,699.86 545.33,699.86 C546.81,699.86 548.69,701.25 551.33,704.51 C553.57,707.26 556.16,710.26 559.03,713.42 C561.9,716.58 566.61,719.36 573.36,722 C580.11,724.64 588.19,726 597.28,726 C613.41,726 625.79,721.9 634.07,713.81 C642.35,705.72 646.53,693.81 646.53,678.26 C646.53,668.02 644.7,659.26 641.08,652.36 C637.874282,645.8902 632.964805,640.41717 626.88,636.53 C620.626732,632.715387 613.998721,629.552171 607.1,627.09 L585.53,619.5 C578.407687,617.155538 571.579303,613.998039 565.18,610.09 C558.689278,605.99337 553.413379,600.234076 549.9,593.41 C546.05,586.24 544.1,577.36 544.1,567.02 C544.1,556.49 546.05,547.32 549.88,539.75 C553.71,532.18 559.06,526.39 565.69,522.75 C571.760835,519.311259 578.289388,516.752362 585.08,515.15 C591.7762,513.680181 598.61447,512.955774 605.47,512.99 C616.890766,512.856493 628.25367,514.630891 639.09,518.24 C650,522 655,525.78 655,530.24 C654.916423,532.213781 654.157409,534.098961 652.85,535.58 C651.34,537.47 649.72,538.42 648.03,538.42 C647.19,538.42 645.75,538.05 640.91,535.34 C636.30085,532.971571 631.462578,531.07848 626.47,529.69 C619.544449,527.721432 612.369222,526.771473 605.17,526.87 C597.558092,526.781289 589.97323,527.791706 582.65,529.87 C576.19,531.8 570.4,535.87 565.46,541.99 C560.52,548.11 558.04,556.19 558.04,566.12 C558.04,574.52 559.85,581.66 563.43,587.36 C566.838785,592.927174 571.736573,597.43009 577.57,600.36 C583.94981,603.517486 590.538592,606.233855 597.29,608.49 C604.46,610.91 611.79,613.63 619.1,616.57 C626.282202,619.451958 633.112871,623.142398 639.46,627.57 C645.73,631.96 650.86,638.45 654.71,646.87 C658.56,655.29 660.47,665.52 660.47,677.43 C660.51,698.35 654.87,714.21 643.76,724.49 L643.77,724.49 Z M765.92,686.38 C756.67,694.94 744.07,699.29 728.49,699.29 C721.242168,699.348298 714.027215,698.309885 707.09,696.21 C701.428334,694.592844 696.056089,692.095694 691.17,688.81 C687.654637,686.392813 684.517177,683.467661 681.86,680.13 C679.44,676.94 678.27,674.23 678.27,671.84 C678.322752,669.953085 679.062359,668.150293 680.35,666.77 C681.85,665.02 683.35,664.18 684.94,664.18 C686.53,664.18 688.35,665.41 690.81,668.43 C692.62,670.65 694.71,673.07 697.04,675.63 C699.16,677.97 702.92,680.21 708.24,682.29 C714.32226,684.514605 720.764973,685.589521 727.24,685.46 C740.04,685.46 749.82,682.24 756.33,675.89 C762.84,669.54 766.1,660.12 766.1,647.83 C766.1,639.7 764.65,632.83 761.8,627.32 C759.297736,622.247998 755.460166,617.95407 750.7,614.9 C745.678978,611.841159 740.357883,609.304592 734.82,607.33 L717.27,601.15 C711.38642,599.215288 705.745772,596.608041 700.46,593.38 C694.996887,589.94318 690.550437,585.110082 687.58,579.38 C684.35,573.38 682.71,565.93 682.71,557.3 C682.71,548.67 684.34,540.87 687.55,534.53 C690.448442,528.485526 695.11436,523.46391 700.93,520.13 C705.977623,517.274361 711.405115,515.149827 717.05,513.82 C722.592378,512.592976 728.253448,511.9826 733.93,512 C743.367043,511.889982 752.756198,513.356827 761.71,516.34 C771.11,519.61 775.49,523.1 775.49,527.34 C775.433713,529.229237 774.727297,531.041195 773.49,532.47 C772.02,534.31 770.37,535.25 768.6,535.25 C767.77,535.25 766.6,535.04 762.2,532.58 C758.525602,530.696709 754.669063,529.19229 750.69,528.09 C745.162798,526.517786 739.435902,525.759815 733.69,525.84 C727.607224,525.759866 721.544725,526.558095 715.69,528.21 C710.365486,529.922249 705.692777,533.223505 702.3,537.67 C698.48,542.39 696.54,548.74 696.54,556.53 C696.54,563.13 697.95,568.72 700.74,573.16 C703.393404,577.491303 707.202977,580.996109 711.74,583.28 C716.884382,585.823473 722.196793,588.011919 727.64,589.83 C733.5,591.83 739.5,594.04 745.46,596.44 C751.395098,598.808559 757.041415,601.844754 762.29,605.49 C767.58,609.19 771.89,614.65 775.12,621.7 C778.35,628.75 779.92,637.22 779.92,647.1 C779.95,664.54 775.23,677.76 765.92,686.38 L765.92,686.38 Z" id="Shape"></path>
62
+ <path d="M168.39,525.81 L131.51,525.81 L131.51,608.24 L168.39,608.24 C180.34,608.24 189.61,604.91 195.94,598.35 C202.27,591.79 205.52,581.68 205.52,568.35 L205.52,565.35 C205.52,552.06 202.3,542.03 195.95,535.52 C189.6,529.01 180.34,525.81 168.39,525.81 L168.39,525.81 Z" id="Shape"></path>
63
+ </g>
64
+ </g>
65
+ </svg>
66
+ </a>
67
+ </article>
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
  spec.require_paths = ["lib"]
23
23
  spec.test_files = Dir["spec/**/*"]
24
24
 
25
- rails_version = ">= 6.0"
25
+ rails_version = ">= 7.0"
26
26
 
27
27
  spec.add_development_dependency "rspec-rails"
28
28
  spec.add_development_dependency "pry"