comfortable_media_surfer 3.1.4 → 3.1.5
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/rubyonrails.yml +2 -0
- data/.rubocop.yml +4 -0
- data/CHANGELOG.md +13 -1
- data/Gemfile +6 -5
- data/README.md +1 -1
- data/app/controllers/comfy/admin/cms/base_controller.rb +2 -2
- data/app/controllers/comfy/admin/cms/files_controller.rb +3 -2
- data/app/controllers/comfy/admin/cms/layouts_controller.rb +2 -1
- data/app/controllers/comfy/admin/cms/pages_controller.rb +3 -2
- data/app/controllers/comfy/admin/cms/sites_controller.rb +1 -1
- data/app/controllers/comfy/admin/cms/snippets_controller.rb +2 -1
- data/app/models/comfy/cms/page.rb +2 -2
- data/app/models/comfy/cms/site.rb +1 -1
- data/comfortable_media_surfer.gemspec +1 -2
- data/gemfiles/7.1.gemfile +7 -4
- data/gemfiles/7.2.gemfile +7 -4
- data/gemfiles/8.0.gemfile +7 -4
- data/gemfiles/8.1.gemfile +35 -0
- data/lib/comfortable_media_surfer/content/renderer.rb +2 -2
- data/lib/comfortable_media_surfer/content/tags/children.rb +1 -1
- data/lib/comfortable_media_surfer/form_builder.rb +2 -2
- data/lib/comfortable_media_surfer/routing.rb +7 -1
- data/lib/comfortable_media_surfer/version.rb +1 -1
- data/package-lock.json +611 -1
- data/rakelib/create_release.rake +4 -3
- metadata +9 -22
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: abe7a0f8d6dc32e0f2e648728c12e1a83ae5d90d49c028d577cc4a778a04060a
|
|
4
|
+
data.tar.gz: 985064562be2aa7e63db41a45f976564adbd4da0985a4c0450ed12c24aaa05c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4317965e60da6123a0981e59c7c46eee484c4ed42e96176ad520e3f07b540e9191b87f292356ba6f337590bc3f5473c915101e08586267ec61e9c3cf170f11ca
|
|
7
|
+
data.tar.gz: 31e775b426a91867bff2c68cabe73b550cdbec02c1362e73c80210b461042d19336ac03116d4223dd0b12c4fa4ba2c4deb1fcb9efb3321fb9616a4cd6308ea05
|
|
@@ -13,10 +13,12 @@ jobs:
|
|
|
13
13
|
- "3.2"
|
|
14
14
|
- "3.3"
|
|
15
15
|
- "3.4"
|
|
16
|
+
- "4.0"
|
|
16
17
|
rails-version:
|
|
17
18
|
- "7.1"
|
|
18
19
|
- "7.2"
|
|
19
20
|
- "8.0"
|
|
21
|
+
- "8.1"
|
|
20
22
|
continue-on-error: [true]
|
|
21
23
|
name: ${{ format('Tests (Ruby {0}, Rails {1})', matrix.ruby-version, matrix.rails-version) }}
|
|
22
24
|
runs-on: ubuntu-latest
|
data/.rubocop.yml
CHANGED
|
@@ -5,6 +5,7 @@ require:
|
|
|
5
5
|
AllCops:
|
|
6
6
|
TargetRubyVersion: 3.2
|
|
7
7
|
NewCops: enable
|
|
8
|
+
SuggestExtensions: false
|
|
8
9
|
Exclude:
|
|
9
10
|
- bin/*
|
|
10
11
|
- db/schema.rb
|
|
@@ -49,6 +50,9 @@ Metrics/PerceivedComplexity:
|
|
|
49
50
|
Naming/MethodParameterName:
|
|
50
51
|
Enabled: false
|
|
51
52
|
|
|
53
|
+
Naming/PredicateMethod:
|
|
54
|
+
Enabled: false
|
|
55
|
+
|
|
52
56
|
# -- Style ---------------------------------------------------------------------
|
|
53
57
|
Style/ClassAndModuleChildren:
|
|
54
58
|
Enabled: false
|
data/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,17 @@ For all changes prior to the inception of this project, see the [Release History
|
|
|
12
12
|
|
|
13
13
|
## [Unreleased]
|
|
14
14
|
|
|
15
|
+
## [v3.1.4] - 2025-07-14
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- removed obsolete JQuery reference
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- updated gem versions
|
|
24
|
+
- update README for migration from Occams
|
|
25
|
+
|
|
15
26
|
## [v3.1.3] - 2025-05-29
|
|
16
27
|
|
|
17
28
|
### Fixed
|
|
@@ -90,7 +101,8 @@ First release of `comfortable_media_surfer`. This new gem is a revival of [Comfo
|
|
|
90
101
|
|
|
91
102
|
- Rebranded **ComfortableMexicanSofa** as **ComfortableMediaSurfer** in order to publish new gem (database table names and schema have not changed).
|
|
92
103
|
|
|
93
|
-
[Unreleased]: https://github.com/shakacode/comfortable-media-surfer/compare/v3.1.
|
|
104
|
+
[Unreleased]: https://github.com/shakacode/comfortable-media-surfer/compare/v3.1.4...master
|
|
105
|
+
[v3.1.4]: https://github.com/shakacode/comfortable-media-surfer/compare/v3.1.3...v3.1.4
|
|
94
106
|
[v3.1.3]: https://github.com/shakacode/comfortable-media-surfer/compare/v3.1.2...v3.1.3
|
|
95
107
|
[v3.1.2]: https://github.com/shakacode/comfortable-media-surfer/compare/v3.1.1...v3.1.2
|
|
96
108
|
[v3.1.1]: https://github.com/shakacode/comfortable-media-surfer/compare/v3.1.0...v3.1.1
|
data/Gemfile
CHANGED
|
@@ -5,14 +5,14 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
5
5
|
|
|
6
6
|
gemspec
|
|
7
7
|
|
|
8
|
-
gem 'rails', '~> 8.0'
|
|
8
|
+
gem 'rails', '~> 8.1.0'
|
|
9
9
|
|
|
10
10
|
group :development, :test do
|
|
11
11
|
gem 'autoprefixer-rails', '~> 10.4.21.0'
|
|
12
12
|
gem 'byebug', '~> 12.0.0', platforms: %i[mri mingw x64_mingw]
|
|
13
13
|
gem 'gem-release'
|
|
14
14
|
gem 'image_processing', '>= 1.12.0'
|
|
15
|
-
gem 'propshaft', '~> 1.1
|
|
15
|
+
gem 'propshaft', '~> 1.3.1'
|
|
16
16
|
gem 'sqlite3', '>= 2.1'
|
|
17
17
|
# gem 'mysql2', '~> 0.5'
|
|
18
18
|
# gem 'pg', '~> 1.5.4'
|
|
@@ -24,18 +24,19 @@ group :development do
|
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
group :test do
|
|
27
|
-
gem 'brakeman', '~> 7.0
|
|
27
|
+
gem 'brakeman', '~> 7.1.0'
|
|
28
28
|
gem 'bundler-audit', '~> 0.9.1'
|
|
29
29
|
gem 'coveralls_reborn', '~> 0.29.0', require: false
|
|
30
30
|
gem 'cuprite', '>= 0.15'
|
|
31
|
+
gem 'diffy'
|
|
31
32
|
gem 'equivalent-xml', '~> 0.6.0'
|
|
32
|
-
gem 'minitest', '
|
|
33
|
+
gem 'minitest', '< 6.0.0'
|
|
33
34
|
gem 'minitest-reporters', '>= 1.6.1'
|
|
34
35
|
gem 'mocha', '>= 2.3.0', require: false
|
|
35
36
|
gem 'ostruct'
|
|
36
37
|
gem 'puma'
|
|
37
38
|
gem 'rails-controller-testing', '~> 1.0.5'
|
|
38
|
-
gem 'rubocop', '~> 1.
|
|
39
|
+
gem 'rubocop', '~> 1.81.1', require: false
|
|
39
40
|
gem 'rubocop-minitest'
|
|
40
41
|
gem 'rubocop-rails'
|
|
41
42
|
gem 'simplecov', '~> 0.22.0', require: false
|
data/README.md
CHANGED
|
@@ -144,5 +144,5 @@ ComfortableMediaSurfer can run like any Rails application in development. It's a
|
|
|
144
144
|
|
|
145
145
|
---
|
|
146
146
|
|
|
147
|
-
Copyright 2010-2019 Oleg Khabarov, 2024-
|
|
147
|
+
Copyright 2010-2019 Oleg Khabarov, 2024-2026 ShakaCode LLC
|
|
148
148
|
Released under the [MIT license](LICENSE)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
class Comfy::Admin::Cms::BaseController < Comfy::Admin::BaseController
|
|
4
4
|
before_action :load_admin_site,
|
|
5
|
-
:set_locale
|
|
5
|
+
:set_locale?,
|
|
6
6
|
:load_seeds,
|
|
7
7
|
except: :jump
|
|
8
8
|
|
|
@@ -33,7 +33,7 @@ protected
|
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
def set_locale
|
|
36
|
+
def set_locale?
|
|
37
37
|
I18n.locale = ComfortableMediaSurfer.config.admin_locale || @site&.locale
|
|
38
38
|
true
|
|
39
39
|
end
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
class Comfy::Admin::Cms::FilesController < Comfy::Admin::Cms::BaseController
|
|
4
4
|
include ::Comfy::ReorderAction
|
|
5
|
+
|
|
5
6
|
self.reorder_action_resource = ::Comfy::Cms::File
|
|
6
7
|
|
|
7
8
|
include ActionView::Helpers::NumberHelper
|
|
@@ -81,9 +82,9 @@ class Comfy::Admin::Cms::FilesController < Comfy::Admin::Cms::BaseController
|
|
|
81
82
|
rescue ActiveRecord::RecordInvalid
|
|
82
83
|
case params[:source]
|
|
83
84
|
when 'plupload'
|
|
84
|
-
render body: @file.errors.full_messages.to_sentence, status: :
|
|
85
|
+
render body: @file.errors.full_messages.to_sentence, status: :unprocessable_content
|
|
85
86
|
when 'redactor'
|
|
86
|
-
render body: nil, status: :
|
|
87
|
+
render body: nil, status: :unprocessable_content
|
|
87
88
|
else
|
|
88
89
|
flash.now[:danger] = I18n.t('comfy.admin.cms.files.creation_failure')
|
|
89
90
|
render action: :new
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
class Comfy::Admin::Cms::LayoutsController < Comfy::Admin::Cms::BaseController
|
|
4
4
|
include ::Comfy::ReorderAction
|
|
5
|
+
|
|
5
6
|
self.reorder_action_resource = ::Comfy::Cms::Layout
|
|
6
7
|
|
|
7
8
|
before_action :build_layout, only: %i[new create]
|
|
@@ -9,7 +10,7 @@ class Comfy::Admin::Cms::LayoutsController < Comfy::Admin::Cms::BaseController
|
|
|
9
10
|
before_action :authorize
|
|
10
11
|
|
|
11
12
|
def index
|
|
12
|
-
return redirect_to action: :new if @site.layouts.
|
|
13
|
+
return redirect_to action: :new if @site.layouts.none?
|
|
13
14
|
|
|
14
15
|
@layouts = @site.layouts.roots.order(:position)
|
|
15
16
|
end
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
class Comfy::Admin::Cms::PagesController < Comfy::Admin::Cms::BaseController
|
|
4
4
|
include ::Comfy::ReorderAction
|
|
5
|
+
|
|
5
6
|
self.reorder_action_resource = ::Comfy::Cms::Page
|
|
6
7
|
|
|
7
8
|
before_action :check_for_layouts, only: %i[new edit]
|
|
@@ -111,7 +112,7 @@ protected
|
|
|
111
112
|
end
|
|
112
113
|
|
|
113
114
|
def site_has_no_pages?
|
|
114
|
-
@site.pages.
|
|
115
|
+
@site.pages.none?
|
|
115
116
|
end
|
|
116
117
|
|
|
117
118
|
def pages_grouped_by_parent
|
|
@@ -119,7 +120,7 @@ protected
|
|
|
119
120
|
end
|
|
120
121
|
|
|
121
122
|
def check_for_layouts
|
|
122
|
-
return unless @site.layouts.
|
|
123
|
+
return unless @site.layouts.none?
|
|
123
124
|
|
|
124
125
|
flash[:danger] = I18n.t('comfy.admin.cms.pages.layout_not_found')
|
|
125
126
|
redirect_to new_comfy_admin_cms_site_layout_path(@site)
|
|
@@ -9,7 +9,7 @@ class Comfy::Admin::Cms::SitesController < Comfy::Admin::Cms::BaseController
|
|
|
9
9
|
before_action :authorize
|
|
10
10
|
|
|
11
11
|
def index
|
|
12
|
-
return redirect_to action: :new if ::Comfy::Cms::Site.
|
|
12
|
+
return redirect_to action: :new if ::Comfy::Cms::Site.none?
|
|
13
13
|
|
|
14
14
|
@site = ::Comfy::Cms::Site.find_by_id(session[:site_id])
|
|
15
15
|
@sites = ::Comfy::Cms::Site.all
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
class Comfy::Admin::Cms::SnippetsController < Comfy::Admin::Cms::BaseController
|
|
4
4
|
include ::Comfy::ReorderAction
|
|
5
|
+
|
|
5
6
|
self.reorder_action_resource = ::Comfy::Cms::Snippet
|
|
6
7
|
|
|
7
8
|
before_action :build_snippet, only: %i[new create]
|
|
@@ -9,7 +10,7 @@ class Comfy::Admin::Cms::SnippetsController < Comfy::Admin::Cms::BaseController
|
|
|
9
10
|
before_action :authorize
|
|
10
11
|
|
|
11
12
|
def index
|
|
12
|
-
return redirect_to action: :new if @site.snippets.
|
|
13
|
+
return redirect_to action: :new if @site.snippets.none?
|
|
13
14
|
|
|
14
15
|
@snippets = @site.snippets.includes(:categories).for_category(params[:categories]).order(:position)
|
|
15
16
|
end
|
|
@@ -36,7 +36,7 @@ class Comfy::Cms::Page < ActiveRecord::Base
|
|
|
36
36
|
presence: true,
|
|
37
37
|
uniqueness: { scope: :parent_id },
|
|
38
38
|
unless: ->(p) {
|
|
39
|
-
p.site && (p.site.pages.
|
|
39
|
+
p.site && (p.site.pages.none? || p.site.pages.root == self)
|
|
40
40
|
}
|
|
41
41
|
validate :validate_target_page
|
|
42
42
|
validate :validate_format_of_unescaped_slug
|
|
@@ -113,7 +113,7 @@ protected
|
|
|
113
113
|
def assign_parent
|
|
114
114
|
return unless site
|
|
115
115
|
|
|
116
|
-
self.parent ||= site.pages.root unless self == site.pages.root || site.pages.
|
|
116
|
+
self.parent ||= site.pages.root unless self == site.pages.root || site.pages.none?
|
|
117
117
|
end
|
|
118
118
|
|
|
119
119
|
def assign_full_path
|
|
@@ -33,7 +33,7 @@ class Comfy::Cms::Site < ActiveRecord::Base
|
|
|
33
33
|
# -- Class Methods -----------------------------------------------------------
|
|
34
34
|
# returning the Comfy::Cms::Site instance based on host and path
|
|
35
35
|
def self.find_site(host, path = nil)
|
|
36
|
-
return Comfy::Cms::Site.first if Comfy::Cms::Site.
|
|
36
|
+
return Comfy::Cms::Site.first if Comfy::Cms::Site.one?
|
|
37
37
|
|
|
38
38
|
cms_site = nil
|
|
39
39
|
|
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
|
|
|
24
24
|
|
|
25
25
|
spec.add_dependency 'active_link_to', '~> 1.0', '>= 1.0.5'
|
|
26
26
|
spec.add_dependency 'comfy_bootstrap_form', '~> 4.0', '>= 4.0.0'
|
|
27
|
-
spec.add_dependency 'haml-rails', '
|
|
27
|
+
spec.add_dependency 'haml-rails', '>= 2.1', '< 4.0'
|
|
28
28
|
spec.add_dependency 'image_processing', '~> 1.2', '>= 1.12.2'
|
|
29
29
|
spec.add_dependency 'kaminari', '~> 1.2', '>= 1.2.2'
|
|
30
30
|
spec.add_dependency 'kramdown', '~> 2.4', '>= 2.4.0'
|
|
@@ -32,5 +32,4 @@ Gem::Specification.new do |spec|
|
|
|
32
32
|
spec.add_dependency 'mini_magick', '>= 4.12', '< 6.0'
|
|
33
33
|
spec.add_dependency 'rails', '>= 7.0.0'
|
|
34
34
|
spec.add_dependency 'rails-i18n', '>= 6.0.0'
|
|
35
|
-
spec.add_dependency 'sassc-rails', '>= 2.1.2'
|
|
36
35
|
end
|
data/gemfiles/7.1.gemfile
CHANGED
|
@@ -16,16 +16,19 @@ group :development, :test do
|
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
group :test do
|
|
19
|
-
gem 'brakeman', '~>
|
|
19
|
+
gem 'brakeman', '~> 7.1.0'
|
|
20
20
|
gem 'bundler-audit', '~> 0.9.1'
|
|
21
|
-
gem 'coveralls_reborn', '~> 0.
|
|
21
|
+
gem 'coveralls_reborn', '~> 0.29.0', require: false
|
|
22
22
|
gem 'cuprite', '>= 0.15'
|
|
23
|
+
gem 'diffy'
|
|
23
24
|
gem 'equivalent-xml', '~> 0.6.0'
|
|
24
|
-
gem 'minitest', '
|
|
25
|
+
gem 'minitest', '< 6.0.0'
|
|
25
26
|
gem 'minitest-reporters', '>= 1.6.1'
|
|
26
27
|
gem 'mocha', '>= 2.3.0', require: false
|
|
28
|
+
gem 'ostruct'
|
|
29
|
+
gem 'puma'
|
|
27
30
|
gem 'rails-controller-testing', '~> 1.0.5'
|
|
28
|
-
gem 'rubocop', '~> 1.
|
|
31
|
+
gem 'rubocop', '~> 1.81.1', require: false
|
|
29
32
|
gem 'rubocop-minitest'
|
|
30
33
|
gem 'rubocop-rails'
|
|
31
34
|
gem 'simplecov', '~> 0.22.0', require: false
|
data/gemfiles/7.2.gemfile
CHANGED
|
@@ -16,16 +16,19 @@ group :development, :test do
|
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
group :test do
|
|
19
|
-
gem 'brakeman', '~>
|
|
19
|
+
gem 'brakeman', '~> 7.1.0'
|
|
20
20
|
gem 'bundler-audit', '~> 0.9.1'
|
|
21
|
-
gem 'coveralls_reborn', '~> 0.
|
|
21
|
+
gem 'coveralls_reborn', '~> 0.29.0', require: false
|
|
22
22
|
gem 'cuprite', '>= 0.15'
|
|
23
|
+
gem 'diffy'
|
|
23
24
|
gem 'equivalent-xml', '~> 0.6.0'
|
|
24
|
-
gem 'minitest', '
|
|
25
|
+
gem 'minitest', '< 6.0.0'
|
|
25
26
|
gem 'minitest-reporters', '>= 1.6.1'
|
|
26
27
|
gem 'mocha', '>= 2.3.0', require: false
|
|
28
|
+
gem 'ostruct'
|
|
29
|
+
gem 'puma'
|
|
27
30
|
gem 'rails-controller-testing', '~> 1.0.5'
|
|
28
|
-
gem 'rubocop', '~> 1.
|
|
31
|
+
gem 'rubocop', '~> 1.81.1', require: false
|
|
29
32
|
gem 'rubocop-minitest'
|
|
30
33
|
gem 'rubocop-rails'
|
|
31
34
|
gem 'simplecov', '~> 0.22.0', require: false
|
data/gemfiles/8.0.gemfile
CHANGED
|
@@ -16,16 +16,19 @@ group :development, :test do
|
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
group :test do
|
|
19
|
-
gem 'brakeman', '~>
|
|
19
|
+
gem 'brakeman', '~> 7.1.0'
|
|
20
20
|
gem 'bundler-audit', '~> 0.9.1'
|
|
21
|
-
gem 'coveralls_reborn', '~> 0.
|
|
21
|
+
gem 'coveralls_reborn', '~> 0.29.0', require: false
|
|
22
22
|
gem 'cuprite', '>= 0.15'
|
|
23
|
+
gem 'diffy'
|
|
23
24
|
gem 'equivalent-xml', '~> 0.6.0'
|
|
24
|
-
gem 'minitest', '
|
|
25
|
+
gem 'minitest', '< 6.0.0'
|
|
25
26
|
gem 'minitest-reporters', '>= 1.6.1'
|
|
26
27
|
gem 'mocha', '>= 2.3.0', require: false
|
|
28
|
+
gem 'ostruct'
|
|
29
|
+
gem 'puma'
|
|
27
30
|
gem 'rails-controller-testing', '~> 1.0.5'
|
|
28
|
-
gem 'rubocop', '~> 1.
|
|
31
|
+
gem 'rubocop', '~> 1.81.1', require: false
|
|
29
32
|
gem 'rubocop-minitest'
|
|
30
33
|
gem 'rubocop-rails'
|
|
31
34
|
gem 'simplecov', '~> 0.22.0', require: false
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
source 'https://rubygems.org'
|
|
4
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
5
|
+
|
|
6
|
+
gemspec path: '../'
|
|
7
|
+
|
|
8
|
+
gem 'rails', '~> 8.1.0'
|
|
9
|
+
|
|
10
|
+
group :development, :test do
|
|
11
|
+
gem 'autoprefixer-rails', '~> 10.4.16.0'
|
|
12
|
+
gem 'byebug', '~> 11.1.0', platforms: %i[mri mingw x64_mingw]
|
|
13
|
+
gem 'image_processing', '>= 1.12.0'
|
|
14
|
+
gem 'propshaft', '~> 1.1.0'
|
|
15
|
+
gem 'sqlite3', '>= 2.1'
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
group :test do
|
|
19
|
+
gem 'brakeman', '~> 7.1.0'
|
|
20
|
+
gem 'bundler-audit', '~> 0.9.1'
|
|
21
|
+
gem 'coveralls_reborn', '~> 0.29.0', require: false
|
|
22
|
+
gem 'cuprite', '>= 0.15'
|
|
23
|
+
gem 'diffy'
|
|
24
|
+
gem 'equivalent-xml', '~> 0.6.0'
|
|
25
|
+
gem 'minitest', '< 6.0.0'
|
|
26
|
+
gem 'minitest-reporters', '>= 1.6.1'
|
|
27
|
+
gem 'mocha', '>= 2.3.0', require: false
|
|
28
|
+
gem 'ostruct'
|
|
29
|
+
gem 'puma'
|
|
30
|
+
gem 'rails-controller-testing', '~> 1.0.5'
|
|
31
|
+
gem 'rubocop', '~> 1.81.1', require: false
|
|
32
|
+
gem 'rubocop-minitest'
|
|
33
|
+
gem 'rubocop-rails'
|
|
34
|
+
gem 'simplecov', '~> 0.22.0', require: false
|
|
35
|
+
end
|
|
@@ -60,7 +60,7 @@ class ComfortableMediaSurfer::Content::Renderer
|
|
|
60
60
|
nodes = nodes(tokens)
|
|
61
61
|
render(nodes, allow_erb || node.allow_erb?, depth.next)
|
|
62
62
|
end
|
|
63
|
-
end.
|
|
63
|
+
end.join
|
|
64
64
|
end
|
|
65
65
|
|
|
66
66
|
def sanitize_erb(string, allow_erb)
|
|
@@ -106,7 +106,7 @@ class ComfortableMediaSurfer::Content::Renderer
|
|
|
106
106
|
|
|
107
107
|
# This handles {{cms:end}} tag. Stopping collecting block nodes.
|
|
108
108
|
when 'end'
|
|
109
|
-
if nodes.
|
|
109
|
+
if nodes.one?
|
|
110
110
|
raise SyntaxError, 'closing unopened block'
|
|
111
111
|
end
|
|
112
112
|
|
|
@@ -25,7 +25,7 @@ class ComfortableMediaSurfer::Content::Tags::Children < ComfortableMediaSurfer::
|
|
|
25
25
|
@style = ''
|
|
26
26
|
@style = "<style>#children {#{@locals['style']}}</style>\n" if @locals['style']
|
|
27
27
|
@exclude = []
|
|
28
|
-
@exclude = @locals['exclude'].split(',') if @locals['exclude']
|
|
28
|
+
@exclude = @locals['exclude'].split(',').map(&:strip) if @locals['exclude']
|
|
29
29
|
@list = ''
|
|
30
30
|
# ActiveRecord_Associations_CollectionProxy
|
|
31
31
|
@page_children = context.children.order(:position).to_ary
|
|
@@ -31,11 +31,11 @@ class ComfortableMediaSurfer::FormBuilder < ComfyBootstrapForm::FormBuilder
|
|
|
31
31
|
# = form.form_actions do
|
|
32
32
|
# = form.submit
|
|
33
33
|
#
|
|
34
|
-
def form_actions(&
|
|
34
|
+
def form_actions(&)
|
|
35
35
|
content_tag(:div, class: 'form-actions row bg-light') do
|
|
36
36
|
content_tag(:div, class: 'col-lg-8 offset-lg-2') do
|
|
37
37
|
content_tag(:div, class: 'form-group row mb-0') do
|
|
38
|
-
content_tag(:div, class: 'col-sm-10 offset-sm-2', &
|
|
38
|
+
content_tag(:div, class: 'col-sm-10 offset-sm-2', &)
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
end
|
|
@@ -8,8 +8,14 @@ module ComfortableMediaSurfer::Routing
|
|
|
8
8
|
namespace :cms, as: :admin_cms, path: path, except: :show do
|
|
9
9
|
get '/', to: 'base#jump'
|
|
10
10
|
|
|
11
|
+
# concern :with_revisions do |options|
|
|
12
|
+
# resources :revisions, options.merge(only: %i[index show]) do
|
|
13
|
+
# patch :revert, on: :member
|
|
14
|
+
# end
|
|
15
|
+
# end
|
|
16
|
+
|
|
11
17
|
concern :with_revisions do |options|
|
|
12
|
-
resources :revisions, options
|
|
18
|
+
resources :revisions, **options, only: %i[index show] do
|
|
13
19
|
patch :revert, on: :member
|
|
14
20
|
end
|
|
15
21
|
end
|
data/package-lock.json
CHANGED
|
@@ -21,6 +21,70 @@
|
|
|
21
21
|
"node": ">= 18.0.0"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
|
+
"node_modules/@esbuild/aix-ppc64": {
|
|
25
|
+
"version": "0.24.0",
|
|
26
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.0.tgz",
|
|
27
|
+
"integrity": "sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==",
|
|
28
|
+
"cpu": [
|
|
29
|
+
"ppc64"
|
|
30
|
+
],
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"optional": true,
|
|
33
|
+
"os": [
|
|
34
|
+
"aix"
|
|
35
|
+
],
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=18"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"node_modules/@esbuild/android-arm": {
|
|
41
|
+
"version": "0.24.0",
|
|
42
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.0.tgz",
|
|
43
|
+
"integrity": "sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==",
|
|
44
|
+
"cpu": [
|
|
45
|
+
"arm"
|
|
46
|
+
],
|
|
47
|
+
"license": "MIT",
|
|
48
|
+
"optional": true,
|
|
49
|
+
"os": [
|
|
50
|
+
"android"
|
|
51
|
+
],
|
|
52
|
+
"engines": {
|
|
53
|
+
"node": ">=18"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"node_modules/@esbuild/android-arm64": {
|
|
57
|
+
"version": "0.24.0",
|
|
58
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.0.tgz",
|
|
59
|
+
"integrity": "sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==",
|
|
60
|
+
"cpu": [
|
|
61
|
+
"arm64"
|
|
62
|
+
],
|
|
63
|
+
"license": "MIT",
|
|
64
|
+
"optional": true,
|
|
65
|
+
"os": [
|
|
66
|
+
"android"
|
|
67
|
+
],
|
|
68
|
+
"engines": {
|
|
69
|
+
"node": ">=18"
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"node_modules/@esbuild/android-x64": {
|
|
73
|
+
"version": "0.24.0",
|
|
74
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.0.tgz",
|
|
75
|
+
"integrity": "sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==",
|
|
76
|
+
"cpu": [
|
|
77
|
+
"x64"
|
|
78
|
+
],
|
|
79
|
+
"license": "MIT",
|
|
80
|
+
"optional": true,
|
|
81
|
+
"os": [
|
|
82
|
+
"android"
|
|
83
|
+
],
|
|
84
|
+
"engines": {
|
|
85
|
+
"node": ">=18"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
24
88
|
"node_modules/@esbuild/darwin-arm64": {
|
|
25
89
|
"version": "0.24.0",
|
|
26
90
|
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.0.tgz",
|
|
@@ -37,6 +101,310 @@
|
|
|
37
101
|
"node": ">=18"
|
|
38
102
|
}
|
|
39
103
|
},
|
|
104
|
+
"node_modules/@esbuild/darwin-x64": {
|
|
105
|
+
"version": "0.24.0",
|
|
106
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.0.tgz",
|
|
107
|
+
"integrity": "sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==",
|
|
108
|
+
"cpu": [
|
|
109
|
+
"x64"
|
|
110
|
+
],
|
|
111
|
+
"license": "MIT",
|
|
112
|
+
"optional": true,
|
|
113
|
+
"os": [
|
|
114
|
+
"darwin"
|
|
115
|
+
],
|
|
116
|
+
"engines": {
|
|
117
|
+
"node": ">=18"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"node_modules/@esbuild/freebsd-arm64": {
|
|
121
|
+
"version": "0.24.0",
|
|
122
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.0.tgz",
|
|
123
|
+
"integrity": "sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==",
|
|
124
|
+
"cpu": [
|
|
125
|
+
"arm64"
|
|
126
|
+
],
|
|
127
|
+
"license": "MIT",
|
|
128
|
+
"optional": true,
|
|
129
|
+
"os": [
|
|
130
|
+
"freebsd"
|
|
131
|
+
],
|
|
132
|
+
"engines": {
|
|
133
|
+
"node": ">=18"
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
"node_modules/@esbuild/freebsd-x64": {
|
|
137
|
+
"version": "0.24.0",
|
|
138
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.0.tgz",
|
|
139
|
+
"integrity": "sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==",
|
|
140
|
+
"cpu": [
|
|
141
|
+
"x64"
|
|
142
|
+
],
|
|
143
|
+
"license": "MIT",
|
|
144
|
+
"optional": true,
|
|
145
|
+
"os": [
|
|
146
|
+
"freebsd"
|
|
147
|
+
],
|
|
148
|
+
"engines": {
|
|
149
|
+
"node": ">=18"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"node_modules/@esbuild/linux-arm": {
|
|
153
|
+
"version": "0.24.0",
|
|
154
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.0.tgz",
|
|
155
|
+
"integrity": "sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==",
|
|
156
|
+
"cpu": [
|
|
157
|
+
"arm"
|
|
158
|
+
],
|
|
159
|
+
"license": "MIT",
|
|
160
|
+
"optional": true,
|
|
161
|
+
"os": [
|
|
162
|
+
"linux"
|
|
163
|
+
],
|
|
164
|
+
"engines": {
|
|
165
|
+
"node": ">=18"
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"node_modules/@esbuild/linux-arm64": {
|
|
169
|
+
"version": "0.24.0",
|
|
170
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.0.tgz",
|
|
171
|
+
"integrity": "sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==",
|
|
172
|
+
"cpu": [
|
|
173
|
+
"arm64"
|
|
174
|
+
],
|
|
175
|
+
"license": "MIT",
|
|
176
|
+
"optional": true,
|
|
177
|
+
"os": [
|
|
178
|
+
"linux"
|
|
179
|
+
],
|
|
180
|
+
"engines": {
|
|
181
|
+
"node": ">=18"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
"node_modules/@esbuild/linux-ia32": {
|
|
185
|
+
"version": "0.24.0",
|
|
186
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.0.tgz",
|
|
187
|
+
"integrity": "sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==",
|
|
188
|
+
"cpu": [
|
|
189
|
+
"ia32"
|
|
190
|
+
],
|
|
191
|
+
"license": "MIT",
|
|
192
|
+
"optional": true,
|
|
193
|
+
"os": [
|
|
194
|
+
"linux"
|
|
195
|
+
],
|
|
196
|
+
"engines": {
|
|
197
|
+
"node": ">=18"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"node_modules/@esbuild/linux-loong64": {
|
|
201
|
+
"version": "0.24.0",
|
|
202
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.0.tgz",
|
|
203
|
+
"integrity": "sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==",
|
|
204
|
+
"cpu": [
|
|
205
|
+
"loong64"
|
|
206
|
+
],
|
|
207
|
+
"license": "MIT",
|
|
208
|
+
"optional": true,
|
|
209
|
+
"os": [
|
|
210
|
+
"linux"
|
|
211
|
+
],
|
|
212
|
+
"engines": {
|
|
213
|
+
"node": ">=18"
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"node_modules/@esbuild/linux-mips64el": {
|
|
217
|
+
"version": "0.24.0",
|
|
218
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.0.tgz",
|
|
219
|
+
"integrity": "sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==",
|
|
220
|
+
"cpu": [
|
|
221
|
+
"mips64el"
|
|
222
|
+
],
|
|
223
|
+
"license": "MIT",
|
|
224
|
+
"optional": true,
|
|
225
|
+
"os": [
|
|
226
|
+
"linux"
|
|
227
|
+
],
|
|
228
|
+
"engines": {
|
|
229
|
+
"node": ">=18"
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
"node_modules/@esbuild/linux-ppc64": {
|
|
233
|
+
"version": "0.24.0",
|
|
234
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.0.tgz",
|
|
235
|
+
"integrity": "sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==",
|
|
236
|
+
"cpu": [
|
|
237
|
+
"ppc64"
|
|
238
|
+
],
|
|
239
|
+
"license": "MIT",
|
|
240
|
+
"optional": true,
|
|
241
|
+
"os": [
|
|
242
|
+
"linux"
|
|
243
|
+
],
|
|
244
|
+
"engines": {
|
|
245
|
+
"node": ">=18"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
"node_modules/@esbuild/linux-riscv64": {
|
|
249
|
+
"version": "0.24.0",
|
|
250
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.0.tgz",
|
|
251
|
+
"integrity": "sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==",
|
|
252
|
+
"cpu": [
|
|
253
|
+
"riscv64"
|
|
254
|
+
],
|
|
255
|
+
"license": "MIT",
|
|
256
|
+
"optional": true,
|
|
257
|
+
"os": [
|
|
258
|
+
"linux"
|
|
259
|
+
],
|
|
260
|
+
"engines": {
|
|
261
|
+
"node": ">=18"
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
"node_modules/@esbuild/linux-s390x": {
|
|
265
|
+
"version": "0.24.0",
|
|
266
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.0.tgz",
|
|
267
|
+
"integrity": "sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==",
|
|
268
|
+
"cpu": [
|
|
269
|
+
"s390x"
|
|
270
|
+
],
|
|
271
|
+
"license": "MIT",
|
|
272
|
+
"optional": true,
|
|
273
|
+
"os": [
|
|
274
|
+
"linux"
|
|
275
|
+
],
|
|
276
|
+
"engines": {
|
|
277
|
+
"node": ">=18"
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"node_modules/@esbuild/linux-x64": {
|
|
281
|
+
"version": "0.24.0",
|
|
282
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.0.tgz",
|
|
283
|
+
"integrity": "sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==",
|
|
284
|
+
"cpu": [
|
|
285
|
+
"x64"
|
|
286
|
+
],
|
|
287
|
+
"license": "MIT",
|
|
288
|
+
"optional": true,
|
|
289
|
+
"os": [
|
|
290
|
+
"linux"
|
|
291
|
+
],
|
|
292
|
+
"engines": {
|
|
293
|
+
"node": ">=18"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"node_modules/@esbuild/netbsd-x64": {
|
|
297
|
+
"version": "0.24.0",
|
|
298
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.0.tgz",
|
|
299
|
+
"integrity": "sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==",
|
|
300
|
+
"cpu": [
|
|
301
|
+
"x64"
|
|
302
|
+
],
|
|
303
|
+
"license": "MIT",
|
|
304
|
+
"optional": true,
|
|
305
|
+
"os": [
|
|
306
|
+
"netbsd"
|
|
307
|
+
],
|
|
308
|
+
"engines": {
|
|
309
|
+
"node": ">=18"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"node_modules/@esbuild/openbsd-arm64": {
|
|
313
|
+
"version": "0.24.0",
|
|
314
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.0.tgz",
|
|
315
|
+
"integrity": "sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==",
|
|
316
|
+
"cpu": [
|
|
317
|
+
"arm64"
|
|
318
|
+
],
|
|
319
|
+
"license": "MIT",
|
|
320
|
+
"optional": true,
|
|
321
|
+
"os": [
|
|
322
|
+
"openbsd"
|
|
323
|
+
],
|
|
324
|
+
"engines": {
|
|
325
|
+
"node": ">=18"
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
"node_modules/@esbuild/openbsd-x64": {
|
|
329
|
+
"version": "0.24.0",
|
|
330
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.0.tgz",
|
|
331
|
+
"integrity": "sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==",
|
|
332
|
+
"cpu": [
|
|
333
|
+
"x64"
|
|
334
|
+
],
|
|
335
|
+
"license": "MIT",
|
|
336
|
+
"optional": true,
|
|
337
|
+
"os": [
|
|
338
|
+
"openbsd"
|
|
339
|
+
],
|
|
340
|
+
"engines": {
|
|
341
|
+
"node": ">=18"
|
|
342
|
+
}
|
|
343
|
+
},
|
|
344
|
+
"node_modules/@esbuild/sunos-x64": {
|
|
345
|
+
"version": "0.24.0",
|
|
346
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.0.tgz",
|
|
347
|
+
"integrity": "sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==",
|
|
348
|
+
"cpu": [
|
|
349
|
+
"x64"
|
|
350
|
+
],
|
|
351
|
+
"license": "MIT",
|
|
352
|
+
"optional": true,
|
|
353
|
+
"os": [
|
|
354
|
+
"sunos"
|
|
355
|
+
],
|
|
356
|
+
"engines": {
|
|
357
|
+
"node": ">=18"
|
|
358
|
+
}
|
|
359
|
+
},
|
|
360
|
+
"node_modules/@esbuild/win32-arm64": {
|
|
361
|
+
"version": "0.24.0",
|
|
362
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.0.tgz",
|
|
363
|
+
"integrity": "sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==",
|
|
364
|
+
"cpu": [
|
|
365
|
+
"arm64"
|
|
366
|
+
],
|
|
367
|
+
"license": "MIT",
|
|
368
|
+
"optional": true,
|
|
369
|
+
"os": [
|
|
370
|
+
"win32"
|
|
371
|
+
],
|
|
372
|
+
"engines": {
|
|
373
|
+
"node": ">=18"
|
|
374
|
+
}
|
|
375
|
+
},
|
|
376
|
+
"node_modules/@esbuild/win32-ia32": {
|
|
377
|
+
"version": "0.24.0",
|
|
378
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.0.tgz",
|
|
379
|
+
"integrity": "sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==",
|
|
380
|
+
"cpu": [
|
|
381
|
+
"ia32"
|
|
382
|
+
],
|
|
383
|
+
"license": "MIT",
|
|
384
|
+
"optional": true,
|
|
385
|
+
"os": [
|
|
386
|
+
"win32"
|
|
387
|
+
],
|
|
388
|
+
"engines": {
|
|
389
|
+
"node": ">=18"
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
"node_modules/@esbuild/win32-x64": {
|
|
393
|
+
"version": "0.24.0",
|
|
394
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.0.tgz",
|
|
395
|
+
"integrity": "sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==",
|
|
396
|
+
"cpu": [
|
|
397
|
+
"x64"
|
|
398
|
+
],
|
|
399
|
+
"license": "MIT",
|
|
400
|
+
"optional": true,
|
|
401
|
+
"os": [
|
|
402
|
+
"win32"
|
|
403
|
+
],
|
|
404
|
+
"engines": {
|
|
405
|
+
"node": ">=18"
|
|
406
|
+
}
|
|
407
|
+
},
|
|
40
408
|
"node_modules/@parcel/watcher": {
|
|
41
409
|
"version": "2.5.0",
|
|
42
410
|
"resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.0.tgz",
|
|
@@ -73,6 +441,26 @@
|
|
|
73
441
|
"@parcel/watcher-win32-x64": "2.5.0"
|
|
74
442
|
}
|
|
75
443
|
},
|
|
444
|
+
"node_modules/@parcel/watcher-android-arm64": {
|
|
445
|
+
"version": "2.5.0",
|
|
446
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.0.tgz",
|
|
447
|
+
"integrity": "sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==",
|
|
448
|
+
"cpu": [
|
|
449
|
+
"arm64"
|
|
450
|
+
],
|
|
451
|
+
"license": "MIT",
|
|
452
|
+
"optional": true,
|
|
453
|
+
"os": [
|
|
454
|
+
"android"
|
|
455
|
+
],
|
|
456
|
+
"engines": {
|
|
457
|
+
"node": ">= 10.0.0"
|
|
458
|
+
},
|
|
459
|
+
"funding": {
|
|
460
|
+
"type": "opencollective",
|
|
461
|
+
"url": "https://opencollective.com/parcel"
|
|
462
|
+
}
|
|
463
|
+
},
|
|
76
464
|
"node_modules/@parcel/watcher-darwin-arm64": {
|
|
77
465
|
"version": "2.5.0",
|
|
78
466
|
"resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.0.tgz",
|
|
@@ -93,6 +481,226 @@
|
|
|
93
481
|
"url": "https://opencollective.com/parcel"
|
|
94
482
|
}
|
|
95
483
|
},
|
|
484
|
+
"node_modules/@parcel/watcher-darwin-x64": {
|
|
485
|
+
"version": "2.5.0",
|
|
486
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.0.tgz",
|
|
487
|
+
"integrity": "sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==",
|
|
488
|
+
"cpu": [
|
|
489
|
+
"x64"
|
|
490
|
+
],
|
|
491
|
+
"license": "MIT",
|
|
492
|
+
"optional": true,
|
|
493
|
+
"os": [
|
|
494
|
+
"darwin"
|
|
495
|
+
],
|
|
496
|
+
"engines": {
|
|
497
|
+
"node": ">= 10.0.0"
|
|
498
|
+
},
|
|
499
|
+
"funding": {
|
|
500
|
+
"type": "opencollective",
|
|
501
|
+
"url": "https://opencollective.com/parcel"
|
|
502
|
+
}
|
|
503
|
+
},
|
|
504
|
+
"node_modules/@parcel/watcher-freebsd-x64": {
|
|
505
|
+
"version": "2.5.0",
|
|
506
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.0.tgz",
|
|
507
|
+
"integrity": "sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==",
|
|
508
|
+
"cpu": [
|
|
509
|
+
"x64"
|
|
510
|
+
],
|
|
511
|
+
"license": "MIT",
|
|
512
|
+
"optional": true,
|
|
513
|
+
"os": [
|
|
514
|
+
"freebsd"
|
|
515
|
+
],
|
|
516
|
+
"engines": {
|
|
517
|
+
"node": ">= 10.0.0"
|
|
518
|
+
},
|
|
519
|
+
"funding": {
|
|
520
|
+
"type": "opencollective",
|
|
521
|
+
"url": "https://opencollective.com/parcel"
|
|
522
|
+
}
|
|
523
|
+
},
|
|
524
|
+
"node_modules/@parcel/watcher-linux-arm-glibc": {
|
|
525
|
+
"version": "2.5.0",
|
|
526
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.0.tgz",
|
|
527
|
+
"integrity": "sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==",
|
|
528
|
+
"cpu": [
|
|
529
|
+
"arm"
|
|
530
|
+
],
|
|
531
|
+
"license": "MIT",
|
|
532
|
+
"optional": true,
|
|
533
|
+
"os": [
|
|
534
|
+
"linux"
|
|
535
|
+
],
|
|
536
|
+
"engines": {
|
|
537
|
+
"node": ">= 10.0.0"
|
|
538
|
+
},
|
|
539
|
+
"funding": {
|
|
540
|
+
"type": "opencollective",
|
|
541
|
+
"url": "https://opencollective.com/parcel"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
544
|
+
"node_modules/@parcel/watcher-linux-arm-musl": {
|
|
545
|
+
"version": "2.5.0",
|
|
546
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.0.tgz",
|
|
547
|
+
"integrity": "sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==",
|
|
548
|
+
"cpu": [
|
|
549
|
+
"arm"
|
|
550
|
+
],
|
|
551
|
+
"license": "MIT",
|
|
552
|
+
"optional": true,
|
|
553
|
+
"os": [
|
|
554
|
+
"linux"
|
|
555
|
+
],
|
|
556
|
+
"engines": {
|
|
557
|
+
"node": ">= 10.0.0"
|
|
558
|
+
},
|
|
559
|
+
"funding": {
|
|
560
|
+
"type": "opencollective",
|
|
561
|
+
"url": "https://opencollective.com/parcel"
|
|
562
|
+
}
|
|
563
|
+
},
|
|
564
|
+
"node_modules/@parcel/watcher-linux-arm64-glibc": {
|
|
565
|
+
"version": "2.5.0",
|
|
566
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.0.tgz",
|
|
567
|
+
"integrity": "sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==",
|
|
568
|
+
"cpu": [
|
|
569
|
+
"arm64"
|
|
570
|
+
],
|
|
571
|
+
"license": "MIT",
|
|
572
|
+
"optional": true,
|
|
573
|
+
"os": [
|
|
574
|
+
"linux"
|
|
575
|
+
],
|
|
576
|
+
"engines": {
|
|
577
|
+
"node": ">= 10.0.0"
|
|
578
|
+
},
|
|
579
|
+
"funding": {
|
|
580
|
+
"type": "opencollective",
|
|
581
|
+
"url": "https://opencollective.com/parcel"
|
|
582
|
+
}
|
|
583
|
+
},
|
|
584
|
+
"node_modules/@parcel/watcher-linux-arm64-musl": {
|
|
585
|
+
"version": "2.5.0",
|
|
586
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.0.tgz",
|
|
587
|
+
"integrity": "sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==",
|
|
588
|
+
"cpu": [
|
|
589
|
+
"arm64"
|
|
590
|
+
],
|
|
591
|
+
"license": "MIT",
|
|
592
|
+
"optional": true,
|
|
593
|
+
"os": [
|
|
594
|
+
"linux"
|
|
595
|
+
],
|
|
596
|
+
"engines": {
|
|
597
|
+
"node": ">= 10.0.0"
|
|
598
|
+
},
|
|
599
|
+
"funding": {
|
|
600
|
+
"type": "opencollective",
|
|
601
|
+
"url": "https://opencollective.com/parcel"
|
|
602
|
+
}
|
|
603
|
+
},
|
|
604
|
+
"node_modules/@parcel/watcher-linux-x64-glibc": {
|
|
605
|
+
"version": "2.5.0",
|
|
606
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.0.tgz",
|
|
607
|
+
"integrity": "sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==",
|
|
608
|
+
"cpu": [
|
|
609
|
+
"x64"
|
|
610
|
+
],
|
|
611
|
+
"license": "MIT",
|
|
612
|
+
"optional": true,
|
|
613
|
+
"os": [
|
|
614
|
+
"linux"
|
|
615
|
+
],
|
|
616
|
+
"engines": {
|
|
617
|
+
"node": ">= 10.0.0"
|
|
618
|
+
},
|
|
619
|
+
"funding": {
|
|
620
|
+
"type": "opencollective",
|
|
621
|
+
"url": "https://opencollective.com/parcel"
|
|
622
|
+
}
|
|
623
|
+
},
|
|
624
|
+
"node_modules/@parcel/watcher-linux-x64-musl": {
|
|
625
|
+
"version": "2.5.0",
|
|
626
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.0.tgz",
|
|
627
|
+
"integrity": "sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==",
|
|
628
|
+
"cpu": [
|
|
629
|
+
"x64"
|
|
630
|
+
],
|
|
631
|
+
"license": "MIT",
|
|
632
|
+
"optional": true,
|
|
633
|
+
"os": [
|
|
634
|
+
"linux"
|
|
635
|
+
],
|
|
636
|
+
"engines": {
|
|
637
|
+
"node": ">= 10.0.0"
|
|
638
|
+
},
|
|
639
|
+
"funding": {
|
|
640
|
+
"type": "opencollective",
|
|
641
|
+
"url": "https://opencollective.com/parcel"
|
|
642
|
+
}
|
|
643
|
+
},
|
|
644
|
+
"node_modules/@parcel/watcher-win32-arm64": {
|
|
645
|
+
"version": "2.5.0",
|
|
646
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.0.tgz",
|
|
647
|
+
"integrity": "sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==",
|
|
648
|
+
"cpu": [
|
|
649
|
+
"arm64"
|
|
650
|
+
],
|
|
651
|
+
"license": "MIT",
|
|
652
|
+
"optional": true,
|
|
653
|
+
"os": [
|
|
654
|
+
"win32"
|
|
655
|
+
],
|
|
656
|
+
"engines": {
|
|
657
|
+
"node": ">= 10.0.0"
|
|
658
|
+
},
|
|
659
|
+
"funding": {
|
|
660
|
+
"type": "opencollective",
|
|
661
|
+
"url": "https://opencollective.com/parcel"
|
|
662
|
+
}
|
|
663
|
+
},
|
|
664
|
+
"node_modules/@parcel/watcher-win32-ia32": {
|
|
665
|
+
"version": "2.5.0",
|
|
666
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.0.tgz",
|
|
667
|
+
"integrity": "sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==",
|
|
668
|
+
"cpu": [
|
|
669
|
+
"ia32"
|
|
670
|
+
],
|
|
671
|
+
"license": "MIT",
|
|
672
|
+
"optional": true,
|
|
673
|
+
"os": [
|
|
674
|
+
"win32"
|
|
675
|
+
],
|
|
676
|
+
"engines": {
|
|
677
|
+
"node": ">= 10.0.0"
|
|
678
|
+
},
|
|
679
|
+
"funding": {
|
|
680
|
+
"type": "opencollective",
|
|
681
|
+
"url": "https://opencollective.com/parcel"
|
|
682
|
+
}
|
|
683
|
+
},
|
|
684
|
+
"node_modules/@parcel/watcher-win32-x64": {
|
|
685
|
+
"version": "2.5.0",
|
|
686
|
+
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.0.tgz",
|
|
687
|
+
"integrity": "sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==",
|
|
688
|
+
"cpu": [
|
|
689
|
+
"x64"
|
|
690
|
+
],
|
|
691
|
+
"license": "MIT",
|
|
692
|
+
"optional": true,
|
|
693
|
+
"os": [
|
|
694
|
+
"win32"
|
|
695
|
+
],
|
|
696
|
+
"engines": {
|
|
697
|
+
"node": ">= 10.0.0"
|
|
698
|
+
},
|
|
699
|
+
"funding": {
|
|
700
|
+
"type": "opencollective",
|
|
701
|
+
"url": "https://opencollective.com/parcel"
|
|
702
|
+
}
|
|
703
|
+
},
|
|
96
704
|
"node_modules/@rails/ujs": {
|
|
97
705
|
"version": "7.1.3-4",
|
|
98
706
|
"resolved": "https://registry.npmjs.org/@rails/ujs/-/ujs-7.1.3-4.tgz",
|
|
@@ -260,7 +868,8 @@
|
|
|
260
868
|
"version": "3.7.1",
|
|
261
869
|
"resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.1.tgz",
|
|
262
870
|
"integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==",
|
|
263
|
-
"license": "MIT"
|
|
871
|
+
"license": "MIT",
|
|
872
|
+
"peer": true
|
|
264
873
|
},
|
|
265
874
|
"node_modules/micromatch": {
|
|
266
875
|
"version": "4.0.8",
|
|
@@ -309,6 +918,7 @@
|
|
|
309
918
|
"resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz",
|
|
310
919
|
"integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==",
|
|
311
920
|
"license": "MIT",
|
|
921
|
+
"peer": true,
|
|
312
922
|
"funding": {
|
|
313
923
|
"type": "opencollective",
|
|
314
924
|
"url": "https://opencollective.com/popperjs"
|
data/rakelib/create_release.rake
CHANGED
|
@@ -16,14 +16,14 @@ desc("Releases the gem package using the given version.
|
|
|
16
16
|
task :create_release, %i[gem_version dry_run] do |_t, args|
|
|
17
17
|
args_hash = args.to_hash
|
|
18
18
|
|
|
19
|
-
is_dry_run = Release.object_to_boolean(args_hash[:dry_run])
|
|
19
|
+
is_dry_run = Release.object_to_boolean?(args_hash[:dry_run])
|
|
20
20
|
gem_version = args_hash.fetch(:gem_version, '').strip
|
|
21
21
|
gem_root = Release.gem_root
|
|
22
22
|
|
|
23
23
|
Release.update_the_local_project
|
|
24
24
|
Release.ensure_there_is_nothing_to_commit
|
|
25
25
|
Release.sh_in_dir(gem_root,
|
|
26
|
-
"gem bump --no-commit #{
|
|
26
|
+
"gem bump --no-commit #{%(--version #{gem_version}) unless gem_version == ''}")
|
|
27
27
|
Release.sh_in_dir(gem_root, 'bundle install')
|
|
28
28
|
Release.sh_in_dir(gem_root, "git commit -am 'Bump version to #{gem_version}'")
|
|
29
29
|
Release.sh_in_dir(gem_root, 'git push')
|
|
@@ -34,6 +34,7 @@ end
|
|
|
34
34
|
|
|
35
35
|
module Release
|
|
36
36
|
extend FileUtils
|
|
37
|
+
|
|
37
38
|
class << self
|
|
38
39
|
def gem_root
|
|
39
40
|
File.expand_path('..', __dir__)
|
|
@@ -57,7 +58,7 @@ module Release
|
|
|
57
58
|
raise(error)
|
|
58
59
|
end
|
|
59
60
|
|
|
60
|
-
def object_to_boolean(value)
|
|
61
|
+
def object_to_boolean?(value)
|
|
61
62
|
[true, 'true', 'yes', 1, '1', 't'].include?(value.instance_of?(String) ? value.downcase : value)
|
|
62
63
|
end
|
|
63
64
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: comfortable_media_surfer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Oleg Khabarov
|
|
@@ -55,22 +55,22 @@ dependencies:
|
|
|
55
55
|
name: haml-rails
|
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|
|
57
57
|
requirements:
|
|
58
|
-
- - "
|
|
58
|
+
- - ">="
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
60
|
version: '2.1'
|
|
61
|
-
- - "
|
|
61
|
+
- - "<"
|
|
62
62
|
- !ruby/object:Gem::Version
|
|
63
|
-
version:
|
|
63
|
+
version: '4.0'
|
|
64
64
|
type: :runtime
|
|
65
65
|
prerelease: false
|
|
66
66
|
version_requirements: !ruby/object:Gem::Requirement
|
|
67
67
|
requirements:
|
|
68
|
-
- - "
|
|
68
|
+
- - ">="
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
70
|
version: '2.1'
|
|
71
|
-
- - "
|
|
71
|
+
- - "<"
|
|
72
72
|
- !ruby/object:Gem::Version
|
|
73
|
-
version:
|
|
73
|
+
version: '4.0'
|
|
74
74
|
- !ruby/object:Gem::Dependency
|
|
75
75
|
name: image_processing
|
|
76
76
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -199,20 +199,6 @@ dependencies:
|
|
|
199
199
|
- - ">="
|
|
200
200
|
- !ruby/object:Gem::Version
|
|
201
201
|
version: 6.0.0
|
|
202
|
-
- !ruby/object:Gem::Dependency
|
|
203
|
-
name: sassc-rails
|
|
204
|
-
requirement: !ruby/object:Gem::Requirement
|
|
205
|
-
requirements:
|
|
206
|
-
- - ">="
|
|
207
|
-
- !ruby/object:Gem::Version
|
|
208
|
-
version: 2.1.2
|
|
209
|
-
type: :runtime
|
|
210
|
-
prerelease: false
|
|
211
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
212
|
-
requirements:
|
|
213
|
-
- - ">="
|
|
214
|
-
- !ruby/object:Gem::Version
|
|
215
|
-
version: 2.1.2
|
|
216
202
|
description: ComfortableMediaSurfer is a powerful Rails 7.0+ CMS Engine
|
|
217
203
|
email:
|
|
218
204
|
- justin@shakacode.com
|
|
@@ -571,6 +557,7 @@ files:
|
|
|
571
557
|
- gemfiles/7.1.gemfile
|
|
572
558
|
- gemfiles/7.2.gemfile
|
|
573
559
|
- gemfiles/8.0.gemfile
|
|
560
|
+
- gemfiles/8.1.gemfile
|
|
574
561
|
- lib/comfortable_media_surfer.rb
|
|
575
562
|
- lib/comfortable_media_surfer/access_control/admin_authentication.rb
|
|
576
563
|
- lib/comfortable_media_surfer/access_control/admin_authorization.rb
|
|
@@ -670,7 +657,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
670
657
|
- !ruby/object:Gem::Version
|
|
671
658
|
version: '0'
|
|
672
659
|
requirements: []
|
|
673
|
-
rubygems_version: 3.
|
|
660
|
+
rubygems_version: 3.7.2
|
|
674
661
|
specification_version: 4
|
|
675
662
|
summary: Rails 7.0+ CMS Engine
|
|
676
663
|
test_files: []
|