New project
parents
Showing
.dockerignore
0 → 100644
.gitattributes
0 → 100644
.github/dependabot.yml
0 → 100644
.github/workflows/ci.yml
0 → 100644
.gitignore
0 → 100644
.rubocop.yml
0 → 100644
.ruby-version
0 → 100644
Dockerfile
0 → 100644
Gemfile
0 → 100644
| source "https://rubygems.org" | |||
| # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" | |||
| gem "rails", "~> 7.2.2", ">= 7.2.2.1" | |||
| # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails] | |||
| gem "sprockets-rails" | |||
| # Use postgresql as the database for Active Record | |||
| gem "pg", "~> 1.1" | |||
| # Use the Puma web server [https://github.com/puma/puma] | |||
| gem "puma", ">= 5.0" | |||
| # Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails] | |||
| gem "importmap-rails" | |||
| # Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev] | |||
| gem "turbo-rails" | |||
| # Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev] | |||
| gem "stimulus-rails" | |||
| # Build JSON APIs with ease [https://github.com/rails/jbuilder] | |||
| gem "jbuilder" | |||
| # Use Redis adapter to run Action Cable in production | |||
| # gem "redis", ">= 4.0.1" | |||
| # Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis] | |||
| # gem "kredis" | |||
| # Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword] | |||
| # gem "bcrypt", "~> 3.1.7" | |||
| # Windows does not include zoneinfo files, so bundle the tzinfo-data gem | |||
| gem "tzinfo-data", platforms: %i[ windows jruby ] | |||
| # Reduces boot times through caching; required in config/boot.rb | |||
| gem "bootsnap", require: false | |||
| # Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images] | |||
| # gem "image_processing", "~> 1.2" | |||
| group :development, :test do | |||
| # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem | |||
| gem "debug", platforms: %i[ mri windows ], require: "debug/prelude" | |||
| # Static analysis for security vulnerabilities [https://brakemanscanner.org/] | |||
| gem "brakeman", require: false | |||
| # Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/] | |||
| gem "rubocop-rails-omakase", require: false | |||
| end | |||
| group :development do | |||
| # Use console on exceptions pages [https://github.com/rails/web-console] | |||
| gem "web-console" | |||
| # Highlight the fine-grained location where an error occurred [https://github.com/ruby/error_highlight] | |||
| gem "error_highlight", ">= 0.4.0", platforms: [ :ruby ] | |||
| end | |||
| group :test do | |||
| # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing] | |||
| gem "capybara" | |||
| gem "selenium-webdriver" | |||
| end |
Gemfile.lock
0 → 100644
README.md
0 → 100644
Rakefile
0 → 100644
app/assets/config/manifest.js
0 → 100644
app/assets/images/.keep
0 → 100644
app/assets/stylesheets/application.css
0 → 100644
app/channels/application_cable/channel.rb
0 → 100644
app/channels/application_cable/connection.rb
0 → 100644
app/controllers/application_controller.rb
0 → 100644
app/controllers/categories_controller.rb
0 → 100644
app/controllers/concerns/.keep
0 → 100644
app/controllers/products_controller.rb
0 → 100644
app/helpers/application_helper.rb
0 → 100644
app/helpers/categories_helper.rb
0 → 100644
app/javascript/application.js
0 → 100644
app/javascript/controllers/application.js
0 → 100644
app/javascript/controllers/index.js
0 → 100644
app/jobs/application_job.rb
0 → 100644
app/mailers/application_mailer.rb
0 → 100644
app/models/application_record.rb
0 → 100644
app/models/category.rb
0 → 100644
app/models/concerns/.keep
0 → 100644
app/models/product.rb
0 → 100644
app/views/categories/_category.html.erb
0 → 100644
app/views/categories/_category.json.jbuilder
0 → 100644
app/views/categories/_form.html.erb
0 → 100644
app/views/categories/edit.html.erb
0 → 100644
app/views/categories/index.html.erb
0 → 100644
app/views/categories/index.json.jbuilder
0 → 100644
app/views/categories/new.html.erb
0 → 100644
app/views/categories/show.html.erb
0 → 100644
app/views/categories/show.json.jbuilder
0 → 100644
app/views/layouts/application.html.erb
0 → 100644
app/views/layouts/mailer.html.erb
0 → 100644
app/views/layouts/mailer.text.erb
0 → 100644
app/views/products/_form.html.erb
0 → 100644
app/views/products/_product.html.erb
0 → 100644
app/views/products/edit.html.erb
0 → 100644
app/views/products/index.html.erb
0 → 100644
app/views/products/new.html.erb
0 → 100644
app/views/products/show.html.erb
0 → 100644
app/views/pwa/manifest.json.erb
0 → 100644
app/views/pwa/service-worker.js
0 → 100644
app/views/shared/_flash.html.erb
0 → 100644
app/views/shared/_header.html.erb
0 → 100644
bin/brakeman
0 → 100755
bin/bundle
0 → 100755
bin/docker-entrypoint
0 → 100755
bin/importmap
0 → 100755
bin/rails
0 → 100755
bin/rake
0 → 100755
bin/rubocop
0 → 100755
bin/setup
0 → 100755
config.ru
0 → 100644
config/application.rb
0 → 100644
config/boot.rb
0 → 100644
config/cable.yml
0 → 100644
config/credentials.yml.enc
0 → 100644
config/database.yml
0 → 100644
config/environment.rb
0 → 100644
config/environments/development.rb
0 → 100644
config/environments/production.rb
0 → 100644
config/environments/test.rb
0 → 100644
config/importmap.rb
0 → 100644
config/initializers/assets.rb
0 → 100644
config/initializers/inflections.rb
0 → 100644
config/initializers/permissions_policy.rb
0 → 100644
config/locales/en.yml
0 → 100644
config/locales/es.yml
0 → 100644
config/puma.rb
0 → 100644
config/routes.rb
0 → 100644
config/storage.yml
0 → 100644
db/migrate/20250221134125_create_products.rb
0 → 100644
db/schema.rb
0 → 100644
db/seeds.rb
0 → 100644
lib/assets/.keep
0 → 100644
lib/tasks/.keep
0 → 100644
log/.keep
0 → 100644
public/404.html
0 → 100644
public/406-unsupported-browser.html
0 → 100644
public/422.html
0 → 100644
public/500.html
0 → 100644
public/icon.png
0 → 100644
5.47 KB
public/icon.svg
0 → 100644
public/robots.txt
0 → 100644
storage/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
test/application_system_test_case.rb
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
test/controllers/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
test/controllers/products_controller_test.rb
0 → 100644
This diff is collapsed.
Click to expand it.
test/fixtures/categories.yml
0 → 100644
This diff is collapsed.
Click to expand it.
test/fixtures/files/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
test/fixtures/products.yml
0 → 100644
This diff is collapsed.
Click to expand it.
test/helpers/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
test/integration/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
test/mailers/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
test/models/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
test/models/category_test.rb
0 → 100644
This diff is collapsed.
Click to expand it.
test/models/product_test.rb
0 → 100644
This diff is collapsed.
Click to expand it.
test/system/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
test/system/categories_test.rb
0 → 100644
This diff is collapsed.
Click to expand it.
test/test_helper.rb
0 → 100644
This diff is collapsed.
Click to expand it.
tmp/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
tmp/pids/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
tmp/storage/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/.keep
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/javascript/.keep
0 → 100644
This diff is collapsed.
Click to expand it.