abizvn-cms 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.
Files changed (34) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +28 -0
  4. data/Rakefile +8 -0
  5. data/app/assets/config/abizvn_cms_manifest.js +1 -0
  6. data/app/assets/stylesheets/abizvn/cms/application.css +15 -0
  7. data/app/controllers/abizvn/cms/application_controller.rb +6 -0
  8. data/app/helpers/abizvn/cms/application_helper.rb +6 -0
  9. data/app/jobs/abizvn/cms/application_job.rb +6 -0
  10. data/app/mailers/abizvn/cms/application_mailer.rb +8 -0
  11. data/app/models/abizvn/cms/application_record.rb +7 -0
  12. data/app/models/abizvn/cms/article.rb +39 -0
  13. data/app/models/abizvn/cms/category.rb +13 -0
  14. data/app/views/layouts/abizvn/cms/application.html.erb +17 -0
  15. data/config/routes.rb +2 -0
  16. data/db/migrate/20250117094449_create_category.rb +9 -0
  17. data/db/migrate/20250117094450_create_articles.rb +11 -0
  18. data/db/migrate/20250119070204_add_articles_count_to_category.rb +7 -0
  19. data/db/migrate/20250301063841_add_slug_to_articles.rb +6 -0
  20. data/lib/abizvn/cms/engine.rb +7 -0
  21. data/lib/abizvn/cms/version.rb +5 -0
  22. data/lib/abizvn/cms.rb +8 -0
  23. data/lib/tasks/abizvn/cms_tasks.rake +4 -0
  24. data/spec/factories/abizvn/cms/articles.rb +9 -0
  25. data/spec/factories/abizvn/cms/categories.rb +7 -0
  26. data/spec/factories/abizvn/general/general_settings.rb +9 -0
  27. data/spec/factories/abizvn/media/albums.rb +8 -0
  28. data/spec/factories/abizvn/media/images.rb +11 -0
  29. data/spec/factories/abizvn/media/videos.rb +11 -0
  30. data/spec/models/abizvn/cms/article_spec.rb +39 -0
  31. data/spec/models/abizvn/cms/category_spec.rb +37 -0
  32. data/spec/rails_helper.rb +81 -0
  33. data/spec/spec_helper.rb +94 -0
  34. metadata +218 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 647b24ac902cdea12774d9951f524848188a9edd8a6c689226ed4302a60f7ec3
4
+ data.tar.gz: bca910b59c6dbf508740fffa7f2e28d39c32dd03028fc5d57efa92821b638ef8
5
+ SHA512:
6
+ metadata.gz: b8ad531808d48abadcf0c8d3df6f19f1e9b021c8f182e545c4a2ae05a0415bdba29c590bf603700dfcc0fb2eba34434b64be438f790dbe8440736e156ec94d78
7
+ data.tar.gz: 8775dc537f88a69efd482a376439abd8b0997c35c0f422d0f63455db2c0843d9848d0aeb0b7479e200112900d0bf6cfe502ae2277d9f40dff96914fc18cacf23
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright Juan
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Abizvn::Cms
2
+ Short description and motivation.
3
+
4
+ ## Usage
5
+ How to use my plugin.
6
+
7
+ ## Installation
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem "abizvn-cms"
12
+ ```
13
+
14
+ And then execute:
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+ ```bash
21
+ $ gem install abizvn-cms
22
+ ```
23
+
24
+ ## Contributing
25
+ Contribution directions go here.
26
+
27
+ ## License
28
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require "bundler/setup"
2
+
3
+ APP_RAKEFILE = File.expand_path("spec/dummy/Rakefile", __dir__)
4
+ load "rails/tasks/engine.rake"
5
+
6
+ load "rails/tasks/statistics.rake"
7
+
8
+ require "bundler/gem_tasks"
@@ -0,0 +1 @@
1
+ //= link_directory ../stylesheets/abizvn/cms .css
@@ -0,0 +1,15 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,6 @@
1
+ module Abizvn
2
+ module Cms
3
+ class ApplicationController < ActionController::Base
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ module Abizvn
2
+ module Cms
3
+ module ApplicationHelper
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ module Abizvn
2
+ module Cms
3
+ class ApplicationJob < ActiveJob::Base
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,8 @@
1
+ module Abizvn
2
+ module Cms
3
+ class ApplicationMailer < ActionMailer::Base
4
+ default from: "from@example.com"
5
+ layout "mailer"
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,7 @@
1
+ module Abizvn
2
+ module Cms
3
+ class ApplicationRecord < ActiveRecord::Base
4
+ self.abstract_class = true
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,39 @@
1
+ module Abizvn
2
+ module Cms
3
+ class Article < ApplicationRecord
4
+ extend FriendlyId
5
+ include Commonbase::RansackSearchable
6
+
7
+ self.table_name = 'cms_articles'
8
+
9
+ scope :ordered, -> { order(updated_at: :desc) }
10
+
11
+ belongs_to :status, class_name: 'Abizvn::General::GeneralSetting'
12
+ belongs_to :category, class_name: 'Category', counter_cache: true
13
+
14
+ has_many :comments, as: :commentable, dependent: :destroy
15
+
16
+ friendly_id :slug_candidates
17
+
18
+ validates :status, :category, :title, :description, presence: true
19
+
20
+ private
21
+
22
+ def slug_candidates
23
+ [
24
+ [:title_ascii],
25
+ [:title_ascii, :now_yyyymmdd],
26
+ [:title_ascii, :now_yyyymmdd, :id]
27
+ ]
28
+ end
29
+
30
+ def title_ascii
31
+ title.to_ascii
32
+ end
33
+
34
+ def now_yyyymmdd
35
+ Time.current.strftime('%y%m%d')
36
+ end
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,13 @@
1
+ module Abizvn
2
+ module Cms
3
+ class Category < ApplicationRecord
4
+ include Commonbase::RansackSearchable
5
+
6
+ self.table_name = 'cms_categories'
7
+
8
+ belongs_to :general, class_name: 'Abizvn::General::GeneralSetting'
9
+
10
+ has_many :articles, foreign_key: :category_id
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,17 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Abizvn cms</title>
5
+ <%= csrf_meta_tags %>
6
+ <%= csp_meta_tag %>
7
+
8
+ <%= yield :head %>
9
+
10
+ <%= stylesheet_link_tag "abizvn/cms/application", media: "all" %>
11
+ </head>
12
+ <body>
13
+
14
+ <%= yield %>
15
+
16
+ </body>
17
+ </html>
data/config/routes.rb ADDED
@@ -0,0 +1,2 @@
1
+ Abizvn::Cms::Engine.routes.draw do
2
+ end
@@ -0,0 +1,9 @@
1
+ class CreateCategory < ActiveRecord::Migration[7.2]
2
+ def change
3
+ create_table :cms_categories do |t|
4
+ t.references :general, null: false, foreign_key: { to_table: :general_settings }
5
+ t.string :tag, null: false, default: ''
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,11 @@
1
+ class CreateArticles < ActiveRecord::Migration[7.2]
2
+ def change
3
+ create_table :cms_articles do |t|
4
+ t.string :title, null: false
5
+ t.text :description, null: false
6
+ t.references :category, foreign_key: { to_table: :cms_categories }
7
+ t.references :status, foreign_key: { to_table: :general_settings }
8
+ t.timestamps
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,7 @@
1
+ class AddArticlesCountToCategory < ActiveRecord::Migration[7.2]
2
+ def change
3
+ change_table :cms_categories do |t|
4
+ t.integer :articles_count, null: false, default: 0
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,6 @@
1
+ class AddSlugToArticles < ActiveRecord::Migration[7.2]
2
+ def change
3
+ add_column :cms_articles, :slug, :string
4
+ add_index :cms_articles, :slug, unique: true
5
+ end
6
+ end
@@ -0,0 +1,7 @@
1
+ module Abizvn
2
+ module Cms
3
+ class Engine < ::Rails::Engine
4
+ isolate_namespace Abizvn::Cms
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ module Abizvn
2
+ module Cms
3
+ VERSION = "0.1.1"
4
+ end
5
+ end
data/lib/abizvn/cms.rb ADDED
@@ -0,0 +1,8 @@
1
+ require "abizvn/cms/version"
2
+ require "abizvn/cms/engine"
3
+
4
+ module Abizvn
5
+ module Cms
6
+ # Your code goes here...
7
+ end
8
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :abizvn_cms do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,9 @@
1
+ FactoryBot.define do
2
+ factory :article, class: 'Abizvn::Cms::Article' do
3
+ sequence(:title) { |n| "Title of article #{n}" }
4
+ sequence(:description) { |n| "Description of article #{n}" }
5
+
6
+ association :status, factory: :general_setting
7
+ association :category, factory: :category
8
+ end
9
+ end
@@ -0,0 +1,7 @@
1
+ FactoryBot.define do
2
+ factory :category, class: 'Abizvn::Cms::Category' do
3
+ tag { 'sample' }
4
+
5
+ association :general, factory: :general_setting
6
+ end
7
+ end
@@ -0,0 +1,9 @@
1
+ FactoryBot.define do
2
+ factory :general_setting, class: 'Abizvn::General::GeneralSetting' do
3
+ group { "sample_group" }
4
+ active { true }
5
+ sequence(:code) { |n| "code#{n}" }
6
+ sequence(:value) { |n| "Value #{n}" }
7
+ sequence(:order) { |n| (100 + n) }
8
+ end
9
+ end
@@ -0,0 +1,8 @@
1
+ FactoryBot.define do
2
+ factory :album, class: 'Abizvn::Media::Album' do
3
+ sequence(:title) { |n| "Album #{n}" }
4
+ sequence(:description) { |n| "Description of album #{n}" }
5
+
6
+ association :status, factory: :general_setting
7
+ end
8
+ end
@@ -0,0 +1,11 @@
1
+ FactoryBot.define do
2
+ factory :image, class: 'Abizvn::Media::Image' do
3
+ image { Rack::Test::UploadedFile.new(Rails.root.join('files', 'small.png'), 'image/png') }
4
+ sequence(:description) { |n| "Description of image #{n}" }
5
+
6
+ trait :linked_image do
7
+ link { 'https://file-examples.com/wp-content/storage/2017/10/file_example_PNG_3MB.png' }
8
+ sequence(:description) { |n| "Description of large image #{n}" }
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ FactoryBot.define do
2
+ factory :video, class: 'Abizvn::Media::Video' do
3
+ video { Rack::Test::UploadedFile.new(Rails.root.join('files', 'sample-5s.mp4'), 'video/mp4') }
4
+ sequence(:description) { |n| "Description of Video #{n}" }
5
+
6
+ trait :linked_video do
7
+ link { 'https://file-examples.com/wp-content/storage/2017/04/file_example_MP4_480_1_5MG.mp4' }
8
+ sequence(:description) { |n| "Description linked video #{n}" }
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,39 @@
1
+ require 'rails_helper'
2
+
3
+ RSpec.describe Abizvn::Cms::Article, type: :model do
4
+ describe 'associations' do
5
+ it { should belong_to(:status).class_name('Abizvn::General::GeneralSetting') }
6
+ it { should belong_to(:category).class_name('Abizvn::Cms::Category').counter_cache(true) }
7
+ end
8
+
9
+ describe 'scopes' do
10
+ describe '.ordered' do
11
+ it 'orders articles by updated_at in descending order' do
12
+ article1 = FactoryBot.create(:article, updated_at: 2.days.ago)
13
+ article2 = FactoryBot.create(:article, updated_at: 1.day.ago)
14
+ article3 = FactoryBot.create(:article, updated_at: Time.current)
15
+
16
+ expect(Abizvn::Cms::Article.ordered).to eq([article3, article2, article1])
17
+ end
18
+ end
19
+ end
20
+
21
+ describe 'validations' do
22
+ it { should validate_presence_of(:status) }
23
+ it { should validate_presence_of(:category) }
24
+ it { should validate_presence_of(:title) }
25
+ it { should validate_presence_of(:description) }
26
+ end
27
+
28
+ describe 'table name' do
29
+ it 'sets the correct table name' do
30
+ expect(Abizvn::Cms::Article.table_name).to eq('cms_articles')
31
+ end
32
+ end
33
+
34
+ describe 'RansackSearchable' do
35
+ it 'includes Commonbase::RansackSearchable' do
36
+ expect(Abizvn::Cms::Article.ancestors).to include(Commonbase::RansackSearchable)
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,37 @@
1
+ require 'rails_helper'
2
+
3
+ RSpec.describe Abizvn::Cms::Category, type: :model do
4
+ describe 'associations' do
5
+ it { should belong_to(:general).class_name('Abizvn::General::GeneralSetting') }
6
+ it { should have_many(:articles).with_foreign_key(:category_id) }
7
+ end
8
+
9
+ describe 'table name' do
10
+ it 'sets the correct table name' do
11
+ expect(Abizvn::Cms::Category.table_name).to eq('cms_categories')
12
+ end
13
+ end
14
+
15
+ describe 'RansackSearchable' do
16
+ it 'includes Commonbase::RansackSearchable' do
17
+ expect(Abizvn::Cms::Category.ancestors).to include(Commonbase::RansackSearchable)
18
+ end
19
+ end
20
+
21
+ describe 'methods' do
22
+ context 'count articles' do
23
+ let(:category) { FactoryBot.create(:category) }
24
+ let(:status) { FactoryBot.create(:general_setting) }
25
+
26
+ before do
27
+ Abizvn::Cms::Article.create(category: category, status: status, title: 'Article 1', description: 'Desc')
28
+ Abizvn::Cms::Article.create(category: category, status: status, title: 'Article 2', description: 'Desc')
29
+ end
30
+
31
+ it 'returns correct value for articles_count' do
32
+ expect(category.articles.count).to eq(2)
33
+ expect(category.articles_count).to eq(2)
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,81 @@
1
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
2
+ require 'spec_helper'
3
+ ENV['RAILS_ENV'] ||= 'test'
4
+ require_relative '../spec/dummy/config/environment'
5
+ # Prevent database truncation if the environment is production
6
+ abort("The Rails environment is running in production mode!") if Rails.env.production?
7
+ # Uncomment the line below in case you have `--require rails_helper` in the `.rspec` file
8
+ # that will avoid rails generators crashing because migrations haven't been run yet
9
+ # return unless Rails.env.test?
10
+ require 'rspec/rails'
11
+ # Add additional requires below this line. Rails is not loaded until this point!
12
+
13
+ # Requires supporting ruby files with custom matchers and macros, etc, in
14
+ # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
15
+ # run as spec files by default. This means that files in spec/support that end
16
+ # in _spec.rb will both be required and run as specs, causing the specs to be
17
+ # run twice. It is recommended that you do not name files matching this glob to
18
+ # end with _spec.rb. You can configure this pattern with the --pattern
19
+ # option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
20
+ #
21
+ # The following line is provided for convenience purposes. It has the downside
22
+ # of increasing the boot-up time by auto-requiring all files in the support
23
+ # directory. Alternatively, in the individual `*_spec.rb` files, manually
24
+ # require only the support files necessary.
25
+ #
26
+ # Rails.root.glob('spec/support/**/*.rb').sort_by(&:to_s).each { |f| require f }
27
+
28
+ # Checks for pending migrations and applies them before tests are run.
29
+ # If you are not using ActiveRecord, you can remove these lines.
30
+ begin
31
+ ActiveRecord::Migration.maintain_test_schema!
32
+ rescue ActiveRecord::PendingMigrationError => e
33
+ abort e.to_s.strip
34
+ end
35
+
36
+ # Requires factories for testing
37
+ Dir.glob(File.join(File.dirname(__FILE__), 'factories', '**', '*.rb')).each { |file| require file }
38
+
39
+ RSpec.configure do |config|
40
+ Shoulda::Matchers.configure do |shoulda_config|
41
+ shoulda_config.integrate do |with|
42
+ with.test_framework :rspec
43
+ with.library :rails
44
+ end
45
+ end
46
+
47
+ # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
48
+ config.fixture_paths = [
49
+ Rails.root.join('spec/fixtures')
50
+ ]
51
+
52
+ # If you're not using ActiveRecord, or you'd prefer not to run each of your
53
+ # examples within a transaction, remove the following line or assign false
54
+ # instead of true.
55
+ config.use_transactional_fixtures = true
56
+
57
+ # You can uncomment this line to turn off ActiveRecord support entirely.
58
+ # config.use_active_record = false
59
+
60
+ # RSpec Rails uses metadata to mix in different behaviours to your tests,
61
+ # for example enabling you to call `get` and `post` in request specs. e.g.:
62
+ #
63
+ # RSpec.describe UsersController, type: :request do
64
+ # # ...
65
+ # end
66
+ #
67
+ # The different available types are documented in the features, such as in
68
+ # https://rspec.info/features/7-1/rspec-rails
69
+ #
70
+ # You can also this infer these behaviours automatically by location, e.g.
71
+ # /spec/models would pull in the same behaviour as `type: :model` but this
72
+ # behaviour is considered legacy and will be removed in a future version.
73
+ #
74
+ # To enable this behaviour uncomment the line below.
75
+ # config.infer_spec_type_from_file_location!
76
+
77
+ # Filter lines from Rails gems in backtraces.
78
+ config.filter_rails_from_backtrace!
79
+ # arbitrary gems may also be filtered via:
80
+ # config.filter_gems_from_backtrace("gem name")
81
+ end
@@ -0,0 +1,94 @@
1
+ # This file was generated by the `rails generate rspec:install` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
4
+ # this file to always be loaded, without a need to explicitly require it in any
5
+ # files.
6
+ #
7
+ # Given that it is always loaded, you are encouraged to keep this file as
8
+ # light-weight as possible. Requiring heavyweight dependencies from this file
9
+ # will add to the boot time of your test suite on EVERY test run, even for an
10
+ # individual file that may not need all of that loaded. Instead, consider making
11
+ # a separate helper file that requires the additional dependencies and performs
12
+ # the additional setup, and require it from the spec files that actually need
13
+ # it.
14
+ #
15
+ # See https://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
16
+ RSpec.configure do |config|
17
+ # rspec-expectations config goes here. You can use an alternate
18
+ # assertion/expectation library such as wrong or the stdlib/minitest
19
+ # assertions if you prefer.
20
+ config.expect_with :rspec do |expectations|
21
+ # This option will default to `true` in RSpec 4. It makes the `description`
22
+ # and `failure_message` of custom matchers include text for helper methods
23
+ # defined using `chain`, e.g.:
24
+ # be_bigger_than(2).and_smaller_than(4).description
25
+ # # => "be bigger than 2 and smaller than 4"
26
+ # ...rather than:
27
+ # # => "be bigger than 2"
28
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
29
+ end
30
+
31
+ # rspec-mocks config goes here. You can use an alternate test double
32
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
33
+ config.mock_with :rspec do |mocks|
34
+ # Prevents you from mocking or stubbing a method that does not exist on
35
+ # a real object. This is generally recommended, and will default to
36
+ # `true` in RSpec 4.
37
+ mocks.verify_partial_doubles = true
38
+ end
39
+
40
+ # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
41
+ # have no way to turn it off -- the option exists only for backwards
42
+ # compatibility in RSpec 3). It causes shared context metadata to be
43
+ # inherited by the metadata hash of host groups and examples, rather than
44
+ # triggering implicit auto-inclusion in groups with matching metadata.
45
+ config.shared_context_metadata_behavior = :apply_to_host_groups
46
+
47
+ # The settings below are suggested to provide a good initial experience
48
+ # with RSpec, but feel free to customize to your heart's content.
49
+ =begin
50
+ # This allows you to limit a spec run to individual examples or groups
51
+ # you care about by tagging them with `:focus` metadata. When nothing
52
+ # is tagged with `:focus`, all examples get run. RSpec also provides
53
+ # aliases for `it`, `describe`, and `context` that include `:focus`
54
+ # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
55
+ config.filter_run_when_matching :focus
56
+
57
+ # Allows RSpec to persist some state between runs in order to support
58
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
59
+ # you configure your source control system to ignore this file.
60
+ config.example_status_persistence_file_path = "spec/examples.txt"
61
+
62
+ # Limits the available syntax to the non-monkey patched syntax that is
63
+ # recommended. For more details, see:
64
+ # https://rspec.info/features/3-12/rspec-core/configuration/zero-monkey-patching-mode/
65
+ config.disable_monkey_patching!
66
+
67
+ # Many RSpec users commonly either run the entire suite or an individual
68
+ # file, and it's useful to allow more verbose output when running an
69
+ # individual spec file.
70
+ if config.files_to_run.one?
71
+ # Use the documentation formatter for detailed output,
72
+ # unless a formatter has already been configured
73
+ # (e.g. via a command-line flag).
74
+ config.default_formatter = "doc"
75
+ end
76
+
77
+ # Print the 10 slowest examples and example groups at the
78
+ # end of the spec run, to help surface which specs are running
79
+ # particularly slow.
80
+ config.profile_examples = 10
81
+
82
+ # Run specs in random order to surface order dependencies. If you find an
83
+ # order dependency and want to debug it, you can fix the order by providing
84
+ # the seed, which is printed after each run.
85
+ # --seed 1234
86
+ config.order = :random
87
+
88
+ # Seed global randomization in this process using the `--seed` CLI option.
89
+ # Setting this allows you to use `--seed` to deterministically reproduce
90
+ # test failures related to randomization by passing the same `--seed` value
91
+ # as the one that triggered the failure.
92
+ Kernel.srand config.seed
93
+ =end
94
+ end
metadata ADDED
@@ -0,0 +1,218 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: abizvn-cms
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Juan
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2025-03-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '7.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '7.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: commonbase
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.2'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: abizvn-general
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.2'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.2'
55
+ - !ruby/object:Gem::Dependency
56
+ name: abizvn-media
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.1'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.1'
69
+ - !ruby/object:Gem::Dependency
70
+ name: jsonapi-serializer
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2.2'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2.2'
83
+ - !ruby/object:Gem::Dependency
84
+ name: friendly_id
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '5.1'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '5.1'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rspec-rails
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '7.0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '7.0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: shoulda-matchers
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '6.2'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '6.2'
125
+ - !ruby/object:Gem::Dependency
126
+ name: factory_bot_rails
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '6.4'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '6.4'
139
+ - !ruby/object:Gem::Dependency
140
+ name: byebug
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '11.1'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '11.1'
153
+ description: Cms System
154
+ email:
155
+ - juanonsoftware@gmail.com
156
+ executables: []
157
+ extensions: []
158
+ extra_rdoc_files: []
159
+ files:
160
+ - MIT-LICENSE
161
+ - README.md
162
+ - Rakefile
163
+ - app/assets/config/abizvn_cms_manifest.js
164
+ - app/assets/stylesheets/abizvn/cms/application.css
165
+ - app/controllers/abizvn/cms/application_controller.rb
166
+ - app/helpers/abizvn/cms/application_helper.rb
167
+ - app/jobs/abizvn/cms/application_job.rb
168
+ - app/mailers/abizvn/cms/application_mailer.rb
169
+ - app/models/abizvn/cms/application_record.rb
170
+ - app/models/abizvn/cms/article.rb
171
+ - app/models/abizvn/cms/category.rb
172
+ - app/views/layouts/abizvn/cms/application.html.erb
173
+ - config/routes.rb
174
+ - db/migrate/20250117094449_create_category.rb
175
+ - db/migrate/20250117094450_create_articles.rb
176
+ - db/migrate/20250119070204_add_articles_count_to_category.rb
177
+ - db/migrate/20250301063841_add_slug_to_articles.rb
178
+ - lib/abizvn/cms.rb
179
+ - lib/abizvn/cms/engine.rb
180
+ - lib/abizvn/cms/version.rb
181
+ - lib/tasks/abizvn/cms_tasks.rake
182
+ - spec/factories/abizvn/cms/articles.rb
183
+ - spec/factories/abizvn/cms/categories.rb
184
+ - spec/factories/abizvn/general/general_settings.rb
185
+ - spec/factories/abizvn/media/albums.rb
186
+ - spec/factories/abizvn/media/images.rb
187
+ - spec/factories/abizvn/media/videos.rb
188
+ - spec/models/abizvn/cms/article_spec.rb
189
+ - spec/models/abizvn/cms/category_spec.rb
190
+ - spec/rails_helper.rb
191
+ - spec/spec_helper.rb
192
+ homepage: https://github.com/abizvncom/abizvn-cms
193
+ licenses:
194
+ - MIT
195
+ metadata:
196
+ homepage_uri: https://github.com/abizvncom/abizvn-cms
197
+ source_code_uri: https://github.com/abizvncom/abizvn-cms
198
+ changelog_uri: https://github.com/abizvncom/abizvn-cms
199
+ post_install_message:
200
+ rdoc_options: []
201
+ require_paths:
202
+ - lib
203
+ required_ruby_version: !ruby/object:Gem::Requirement
204
+ requirements:
205
+ - - ">="
206
+ - !ruby/object:Gem::Version
207
+ version: '0'
208
+ required_rubygems_version: !ruby/object:Gem::Requirement
209
+ requirements:
210
+ - - ">="
211
+ - !ruby/object:Gem::Version
212
+ version: '0'
213
+ requirements: []
214
+ rubygems_version: 3.4.19
215
+ signing_key:
216
+ specification_version: 4
217
+ summary: Cms
218
+ test_files: []