├── log └── .keep ├── storage └── .keep ├── tmp ├── .keep ├── pids │ └── .keep └── storage │ └── .keep ├── vendor └── .keep ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── public ├── favicon.ico ├── apple-touch-icon.png ├── apple-touch-icon-precomposed.png ├── robots.txt ├── 500.html ├── 422.html └── 404.html ├── test ├── helpers │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ └── greeting_test.rb ├── system │ └── .keep ├── controllers │ ├── .keep │ └── root_controller_test.rb ├── integration │ └── .keep ├── fixtures │ ├── files │ │ └── .keep │ └── greetings.yml ├── application_system_test_case.rb ├── channels │ └── application_cable │ │ └── connection_test.rb └── test_helper.rb ├── .ruby-version ├── app ├── assets │ ├── builds │ │ └── .keep │ ├── images │ │ └── .keep │ ├── config │ │ └── manifest.js │ └── stylesheets │ │ └── application.css ├── models │ ├── concerns │ │ └── .keep │ ├── greeting.rb │ └── application_record.rb ├── controllers │ ├── concerns │ │ └── .keep │ ├── application_controller.rb │ ├── root_controller.rb │ └── api │ │ └── greetings_controller.rb ├── views │ ├── layouts │ │ ├── mailer.text.erb │ │ ├── mailer.html.erb │ │ └── application.html.erb │ └── root │ │ └── index.html.erb ├── helpers │ ├── root_helper.rb │ └── application_helper.rb ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── mailers │ └── application_mailer.rb ├── javascript │ ├── controllers │ │ ├── hello_controller.js │ │ ├── application.js │ │ └── index.js │ ├── redux │ │ ├── store.js │ │ └── greetings │ │ │ └── greetings.js │ ├── components │ │ ├── App.js │ │ └── Greetings.js │ └── application.js └── jobs │ └── application_job.rb ├── Procfile.dev ├── bin ├── rake ├── rails ├── dev ├── setup └── bundle ├── config ├── environment.rb ├── routes.rb ├── boot.rb ├── cable.yml ├── initializers │ ├── filter_parameter_logging.rb │ ├── permissions_policy.rb │ ├── assets.rb │ ├── inflections.rb │ └── content_security_policy.rb ├── credentials.yml.enc ├── application.rb ├── locales │ └── en.yml ├── storage.yml ├── puma.rb ├── environments │ ├── test.rb │ ├── development.rb │ └── production.rb └── database.yml ├── db ├── seeds.rb ├── migrate │ └── 20231107203405_create_greetings.rb └── schema.rb ├── config.ru ├── Rakefile ├── babel.config.js ├── .gitattributes ├── webpack.config.js ├── .stylelintrc.json ├── .gitignore ├── package.json ├── LICENSE ├── .rubocop.yml ├── .github └── workflows │ └── linters.yml ├── Gemfile ├── README.md └── Gemfile.lock /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.2 2 | -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/root/index.html.erb: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /app/helpers/root_helper.rb: -------------------------------------------------------------------------------- 1 | module RootHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/models/greeting.rb: -------------------------------------------------------------------------------- 1 | class Greeting < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- 1 | web: env RUBY_DEBUG_OPEN=true bin/rails server 2 | js: yarn build --watch 3 | -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/controllers/root_controller.rb: -------------------------------------------------------------------------------- 1 | class RootController < ApplicationController 2 | def index; end 3 | end 4 | -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- 1 | class ApplicationRecord < ActiveRecord::Base 2 | primary_abstract_class 3 | end 4 | -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require_relative "../config/boot" 3 | require "rake" 4 | Rake.application.run 5 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file 2 | -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- 1 | //= link_tree ../images 2 | //= link_directory ../stylesheets .css 3 | //= link_tree ../builds 4 | -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Channel < ActionCable::Channel::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Connection < ActionCable::Connection::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- 1 | class ApplicationMailer < ActionMailer::Base 2 | default from: 'from@example.com' 3 | layout 'mailer' 4 | end 5 | -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | APP_PATH = File.expand_path("../config/application", __dir__) 3 | require_relative "../config/boot" 4 | require "rails/commands" 5 | -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- 1 | # Load the Rails application. 2 | require_relative "application" 3 | 4 | # Initialize the Rails application. 5 | Rails.application.initialize! 6 | -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | root "root#index" 3 | 4 | namespace :api do 5 | resources :greetings, only: [:index] 6 | end 7 | end 8 | -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- 1 | greetings = ["Hello", "Hi", "Greetings", "Welcome", "Salutations"] 2 | 3 | greetings.each do |greeting| 4 | Greeting.create(message: greeting) 5 | end 6 | -------------------------------------------------------------------------------- /test/models/greeting_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class GreetingTest < ActiveSupport::TestCase 4 | # test "the truth" do 5 | # assert true 6 | # end 7 | end 8 | -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require_relative 'config/environment' 4 | 5 | run Rails.application 6 | Rails.application.load_server 7 | -------------------------------------------------------------------------------- /test/fixtures/greetings.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at https://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html 2 | 3 | one: 4 | message: MyString 5 | 6 | two: 7 | message: MyString 8 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ApplicationSystemTestCase < ActionDispatch::SystemTestCase 4 | driven_by :selenium, using: :chrome, screen_size: [1400, 1400] 5 | end 6 | -------------------------------------------------------------------------------- /app/controllers/api/greetings_controller.rb: -------------------------------------------------------------------------------- 1 | class Api::GreetingsController < ApplicationController 2 | def index 3 | greetings = Greeting.find(Random.new.rand(1..5)) 4 | render json: greetings 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /app/javascript/controllers/hello_controller.js: -------------------------------------------------------------------------------- 1 | import { Controller } from "@hotwired/stimulus" 2 | 3 | export default class extends Controller { 4 | connect() { 5 | this.element.textContent = "Hello World!" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /app/javascript/redux/store.js: -------------------------------------------------------------------------------- 1 | import { configureStore } from '@reduxjs/toolkit'; 2 | import rootReducer from './greetings/greetings' 3 | 4 | export default configureStore({ 5 | reducer: { 6 | root: rootReducer 7 | }, 8 | }); -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- 1 | ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) 2 | 3 | require "bundler/setup" # Set up gems listed in the Gemfile. 4 | require "bootsnap/setup" # Speed up boot time by caching expensive operations. 5 | -------------------------------------------------------------------------------- /test/controllers/root_controller_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class RootControllerTest < ActionDispatch::IntegrationTest 4 | test 'should get index' do 5 | get root_index_url 6 | assert_response :success 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /db/migrate/20231107203405_create_greetings.rb: -------------------------------------------------------------------------------- 1 | class CreateGreetings < ActiveRecord::Migration[7.0] 2 | def change 3 | create_table :greetings do |t| 4 | t.string :message 5 | 6 | t.timestamps 7 | end 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | # Add your own tasks in files placed in lib/tasks ending in .rake, 2 | # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. 3 | 4 | require_relative "config/application" 5 | 6 | Rails.application.load_tasks 7 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | [ 4 | '@babel/preset-env', 5 | { 6 | targets: { 7 | node: 'current', 8 | }, 9 | }, 10 | ], 11 | '@babel/preset-react', 12 | ], 13 | }; -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # See https://git-scm.com/docs/gitattributes for more about git attribute files. 2 | 3 | # Mark the database schema as having been generated. 4 | db/schema.rb linguist-generated 5 | 6 | # Mark any vendored files as having been vendored. 7 | vendor/* linguist-vendored 8 | -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | if ! gem list foreman -i --silent; then 4 | echo "Installing foreman..." 5 | gem install foreman 6 | fi 7 | 8 | # Default to port 3000 if not specified 9 | export PORT="${PORT:-3000}" 10 | 11 | exec foreman start -f Procfile.dev "$@" 12 | -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- 1 | development: 2 | adapter: redis 3 | url: redis://localhost:6379/1 4 | 5 | test: 6 | adapter: test 7 | 8 | production: 9 | adapter: redis 10 | url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %> 11 | channel_prefix: Hello_Rails_React_production 12 | -------------------------------------------------------------------------------- /app/javascript/controllers/application.js: -------------------------------------------------------------------------------- 1 | import { Application } from "@hotwired/stimulus" 2 | 3 | const application = Application.start() 4 | 5 | // Configure Stimulus development experience 6 | application.debug = false 7 | window.Stimulus = application 8 | 9 | export { application } 10 | -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | # Automatically retry jobs that encountered a deadlock 3 | # retry_on ActiveRecord::Deadlocked 4 | 5 | # Most jobs are safe to ignore if the underlying records are no longer available 6 | # discard_on ActiveJob::DeserializationError 7 | end 8 | -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 11 | <%= yield %> 12 | 13 | 14 | -------------------------------------------------------------------------------- /test/channels/application_cable/connection_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ApplicationCable::ConnectionTest < ActionCable::Connection::TestCase 4 | # test "connects with cookies" do 5 | # cookies.signed[:user_id] = 42 6 | # 7 | # connect 8 | # 9 | # assert_equal connection.user_id, "42" 10 | # end 11 | end 12 | -------------------------------------------------------------------------------- /app/javascript/controllers/index.js: -------------------------------------------------------------------------------- 1 | // This file is auto-generated by ./bin/rails stimulus:manifest:update 2 | // Run that command whenever you add a new controller or create them with 3 | // ./bin/rails generate stimulus controllerName 4 | 5 | import { application } from "./application" 6 | 7 | import HelloController from "./hello_controller" 8 | application.register("hello", HelloController) 9 | -------------------------------------------------------------------------------- /app/javascript/components/App.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { Routes, Route, BrowserRouter as Router } from 'react-router-dom'; 3 | import Greetings from './Greetings'; 4 | 5 | function App() { 6 | return ( 7 | 8 | 9 | } /> 10 | 11 | 12 | ); 13 | } 14 | 15 | export default App; -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- 1 | ENV['RAILS_ENV'] ||= 'test' 2 | require_relative '../config/environment' 3 | require 'rails/test_help' 4 | 5 | class ActiveSupport::TestCase 6 | # Run tests in parallel with specified workers 7 | parallelize(workers: :number_of_processors) 8 | 9 | # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. 10 | fixtures :all 11 | 12 | # Add more helper methods to be used by all tests here... 13 | end 14 | -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Configure parameters to be filtered from the log file. Use this to limit dissemination of 4 | # sensitive information. See the ActiveSupport::ParameterFilter documentation for supported 5 | # notations and behaviors. 6 | Rails.application.config.filter_parameters += [ 7 | :passw, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn 8 | ] 9 | -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- 1 | # Define an application-wide HTTP permissions policy. For further 2 | # information see https://developers.google.com/web/updates/2018/06/feature-policy 3 | # 4 | # Rails.application.config.permissions_policy do |f| 5 | # f.camera :none 6 | # f.gyroscope :none 7 | # f.microphone :none 8 | # f.usb :none 9 | # f.fullscreen :self 10 | # f.payment :self, "https://secure.example.com" 11 | # end 12 | -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- 1 | SKE0hf7wmBj+28tXFVH6pORYaRyAiGc0oqiJ7fmKH1ezjA0NwXvhKF5hHYxLNlYpWYwxdhVsFTyhKKTJdhScLcArnJuMg3Fax7zhICXlEPyTDxZtnCRh4viGVGoKizh0NSFVjS++jMk1ha+X6LgSLbAGlhixTrd/M4s3X/idxH0wFgefzGaaNQUD1xBNcZ0Q7/R5ri9u1RBKkLTxlJvQMA73iJdUGcpVGIsWbd2Cgz97tAnIia3Hy2soCK6VLyE6EbLJ25Yd1dAJDdf3hYydKqI29zytuPuHSIGMRfzv1qATUQw0kjuOfhb0zqaiFiGn7JOGgFlcEBJXgxdn887kOHdLjIHueO9nTh2m7wMM0vOORCp6UJ8t/xFz7F7nzdI19ocl0kvKhOJDqQwFUmFEdeeCpranAoIDfrJt--bfdC2HKII4ReKx3r--VQrh6ZHeVKn5S7V5Dl5raw== -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HelloRailsReact 5 | 6 | <%= csrf_meta_tags %> 7 | <%= csp_meta_tag %> 8 | 9 | <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> 10 | <%= javascript_include_tag "application", "data-turbo-track": "reload", defer: true %> 11 | 12 | 13 | 14 | <%= yield %> 15 | 16 | 17 | -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Version of your assets, change this if you want to expire all your assets. 4 | Rails.application.config.assets.version = "1.0" 5 | 6 | # Add additional assets to the asset load path. 7 | # Rails.application.config.assets.paths << Emoji.images_path 8 | 9 | # Precompile additional assets. 10 | # application.js, application.css, and all non-JS/CSS in the app/assets 11 | # folder are already added. 12 | # Rails.application.config.assets.precompile += %w( admin.js admin.css ) 13 | -------------------------------------------------------------------------------- /app/javascript/application.js: -------------------------------------------------------------------------------- 1 | // Entry point for the build script in your package.json 2 | //import "@hotwired/turbo-rails" 3 | //import "./controllers" 4 | 5 | import React from 'react'; 6 | import ReactDOM from 'react-dom/client'; 7 | import App from './components/App'; 8 | import { Provider } from 'react-redux'; 9 | import store from './redux/store'; 10 | 11 | const root = ReactDOM.createRoot(document.getElementById('root')); 12 | root.render( 13 | 14 | 15 | 16 | 17 | , 18 | ); 19 | -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- 1 | /* Style the h1 heading */ 2 | h1 { 3 | text-align: center; 4 | font-family: sans-serif; 5 | font-size: 48px; 6 | font-weight: bold; 7 | position: relative; 8 | top: 50%; 9 | transform: translateY(-50%); 10 | color: #54c5f9; 11 | text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); 12 | } 13 | 14 | .greeting-container { 15 | background-color: #fff; 16 | border-radius: 10px; 17 | box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 18 | padding: 50px; 19 | text-align: center; 20 | background-image: linear-gradient(to bottom, #fff, #f2f2f2); 21 | } 22 | -------------------------------------------------------------------------------- /app/javascript/components/Greetings.js: -------------------------------------------------------------------------------- 1 | import React, { useEffect } from 'react'; 2 | import { useDispatch, useSelector } from 'react-redux'; 3 | import { fetchgreeting } from '../redux/greetings/greetings'; 4 | 5 | 6 | const Greetings = () => { 7 | const dispatch = useDispatch(); 8 | const messages = useSelector((state) => state.root.greeting); 9 | 10 | useEffect(() => { 11 | dispatch(fetchgreeting()); 12 | }, []); 13 | 14 | if (!messages) { 15 | return
Loading...
; 16 | } 17 | 18 | return ( 19 | <> 20 |
21 |

{messages.message}

22 |
23 | 24 | ); 25 | }; 26 | 27 | export default Greetings; -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new inflection rules using the following format. Inflections 4 | # are locale specific, and you may define rules for as many different 5 | # locales as you wish. All of these examples are active by default: 6 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 7 | # inflect.plural /^(ox)$/i, "\\1en" 8 | # inflect.singular /^(ox)en/i, "\\1" 9 | # inflect.irregular "person", "people" 10 | # inflect.uncountable %w( fish sheep ) 11 | # end 12 | 13 | # These inflection rules are supported but not enabled by default: 14 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 15 | # inflect.acronym "RESTful" 16 | # end 17 | -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- 1 | require_relative "boot" 2 | 3 | require "rails/all" 4 | 5 | # Require the gems listed in Gemfile, including any gems 6 | # you've limited to :test, :development, or :production. 7 | Bundler.require(*Rails.groups) 8 | 9 | module HelloRailsReact 10 | class Application < Rails::Application 11 | # Initialize configuration defaults for originally generated Rails version. 12 | config.load_defaults 7.0 13 | 14 | # Configuration for the application, engines, and railties goes here. 15 | # 16 | # These settings can be overridden in specific environments using the files 17 | # in config/environments, which are processed later. 18 | # 19 | # config.time_zone = "Central Time (US & Canada)" 20 | # config.eager_load_paths << Rails.root.join("extras") 21 | end 22 | end 23 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const webpack = require('webpack'); 3 | 4 | module.exports = { 5 | mode: 'production', 6 | devtool: 'source-map', 7 | entry: { 8 | application: './app/javascript/application.js', 9 | }, 10 | module: { 11 | rules: [ 12 | { 13 | test: /\.(js)$/, 14 | exclude: /node_modules/, 15 | use: ['babel-loader'], 16 | }, 17 | { 18 | test: /\.css$/, 19 | use: ['style-loader', 'css-loader'], 20 | }, 21 | ], 22 | }, 23 | output: { 24 | filename: '[name].js', 25 | sourceMapFilename: '[name].js.map', 26 | path: path.resolve(__dirname, 'app/assets/builds'), 27 | }, 28 | plugins: [ 29 | new webpack.optimize.LimitChunkCountPlugin({ 30 | maxChunks: 1, 31 | }), 32 | ], 33 | }; 34 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["stylelint-config-standard"], 3 | "plugins": ["stylelint-scss", "stylelint-csstree-validator"], 4 | "rules": { 5 | "at-rule-no-unknown": [ 6 | true, 7 | { 8 | "ignoreAtRules": [ 9 | "tailwind", 10 | "apply", 11 | "variants", 12 | "responsive", 13 | "screen" 14 | ] 15 | } 16 | ], 17 | "scss/at-rule-no-unknown": [ 18 | true, 19 | { 20 | "ignoreAtRules": [ 21 | "tailwind", 22 | "apply", 23 | "variants", 24 | "responsive", 25 | "screen" 26 | ] 27 | } 28 | ], 29 | "csstree/validator": true 30 | }, 31 | "ignoreFiles": ["build/**", "dist/**", "**/reset*.css", "**/bootstrap*.css"] 32 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files for more about ignoring files. 2 | # 3 | # If you find yourself ignoring temporary files generated by your text editor 4 | # or operating system, you probably want to add a global ignore instead: 5 | # git config --global core.excludesfile '~/.gitignore_global' 6 | 7 | # Ignore bundler config. 8 | /.bundle 9 | 10 | # Ignore all logfiles and tempfiles. 11 | /log/* 12 | /tmp/* 13 | !/log/.keep 14 | !/tmp/.keep 15 | 16 | # Ignore pidfiles, but keep the directory. 17 | /tmp/pids/* 18 | !/tmp/pids/ 19 | !/tmp/pids/.keep 20 | 21 | # Ignore uploaded files in development. 22 | /storage/* 23 | !/storage/.keep 24 | /tmp/storage/* 25 | !/tmp/storage/ 26 | !/tmp/storage/.keep 27 | 28 | /public/assets 29 | 30 | # Ignore master key for decrypting credentials and more. 31 | /config/master.key 32 | 33 | /app/assets/builds/* 34 | !/app/assets/builds/.keep 35 | 36 | /node_modules 37 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "app", 3 | "private": "true", 4 | "dependencies": { 5 | "@hotwired/stimulus": "^3.2.2", 6 | "@hotwired/turbo-rails": "^7.3.0", 7 | "@reduxjs/toolkit": "^1.9.7", 8 | "react": "^18.2.0", 9 | "react-dom": "^18.2.0", 10 | "react-redux": "^8.1.3", 11 | "react-router-dom": "^6.18.0", 12 | "redux": "^4.2.1", 13 | "redux-thunk": "^2.4.2", 14 | "webpack": "^5.89.0", 15 | "webpack-cli": "^5.1.4" 16 | }, 17 | "scripts": { 18 | "build": "webpack --config webpack.config.js" 19 | }, 20 | "devDependencies": { 21 | "@babel/core": "^7.23.2", 22 | "@babel/preset-env": "^7.23.2", 23 | "@babel/preset-react": "^7.22.15", 24 | "babel-loader": "^9.1.3", 25 | "esbuild": "^0.19.5", 26 | "esbuild-loader": "^4.0.2", 27 | "stylelint": "^13.13.1", 28 | "stylelint-config-standard": "^21.0.0", 29 | "stylelint-csstree-validator": "^1.9.0", 30 | "stylelint-scss": "^3.21.0" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- 1 | # Files in the config/locales directory are used for internationalization 2 | # and are automatically loaded by Rails. If you want to use locales other 3 | # than English, add the necessary files in this directory. 4 | # 5 | # To use the locales, use `I18n.t`: 6 | # 7 | # I18n.t "hello" 8 | # 9 | # In views, this is aliased to just `t`: 10 | # 11 | # <%= t("hello") %> 12 | # 13 | # To use a different locale, set it with `I18n.locale`: 14 | # 15 | # I18n.locale = :es 16 | # 17 | # This would use the information in config/locales/es.yml. 18 | # 19 | # The following keys must be escaped otherwise they will not be retrieved by 20 | # the default I18n backend: 21 | # 22 | # true, false, on, off, yes, no 23 | # 24 | # Instead, surround them with single quotes. 25 | # 26 | # en: 27 | # "true": "foo" 28 | # 29 | # To learn more, please read the Rails Internationalization guide 30 | # available at https://guides.rubyonrails.org/i18n.html. 31 | 32 | en: 33 | hello: "Hello world" 34 | -------------------------------------------------------------------------------- /app/javascript/redux/greetings/greetings.js: -------------------------------------------------------------------------------- 1 | // const initState = ''; 2 | 3 | // const greetingReducer = (state = initState, action) => { 4 | // switch (action.type) { 5 | // case 'GET_GREETING': 6 | // return action.payload; 7 | // default: 8 | // return state; 9 | // } 10 | // }; 11 | 12 | 13 | // export default greetingReducer; 14 | 15 | import { combineReducers } from 'redux'; 16 | 17 | 18 | 19 | const greetingReducer = (state = null, action) => { 20 | switch (action.type) { 21 | case 'GET_GREETING': 22 | return action.payload; 23 | default: 24 | return state; 25 | } 26 | }; 27 | 28 | 29 | export const fetchgreeting = () => async (dispatch) => { 30 | await fetch('/api/greetings') 31 | .then((response) => response.json()) 32 | .then((data) => { 33 | dispatch({ type: 'GET_GREETING', payload: data }); 34 | }); 35 | }; 36 | 37 | const rootReducer = combineReducers({ 38 | greeting: greetingReducer, 39 | }); 40 | 41 | export default rootReducer; -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Ahmed Eid 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- 1 | # This file is auto-generated from the current state of the database. Instead 2 | # of editing this file, please use the migrations feature of Active Record to 3 | # incrementally modify your database, and then regenerate this schema definition. 4 | # 5 | # This file is the source Rails uses to define your schema when running `bin/rails 6 | # db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to 7 | # be faster and is potentially less error prone than running all of your 8 | # migrations from scratch. Old migrations may fail to apply correctly if those 9 | # migrations use external dependencies or application code. 10 | # 11 | # It's strongly recommended that you check this file into your version control system. 12 | 13 | ActiveRecord::Schema[7.0].define(version: 2023_11_07_203405) do 14 | # These are extensions that must be enabled in order to support this database 15 | enable_extension "plpgsql" 16 | 17 | create_table "greetings", force: :cascade do |t| 18 | t.string "message" 19 | t.datetime "created_at", null: false 20 | t.datetime "updated_at", null: false 21 | end 22 | 23 | end 24 | -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require "fileutils" 3 | 4 | # path to your application root. 5 | APP_ROOT = File.expand_path("..", __dir__) 6 | 7 | def system!(*args) 8 | system(*args) || abort("\n== Command #{args} failed ==") 9 | end 10 | 11 | FileUtils.chdir APP_ROOT do 12 | # This script is a way to set up or update your development environment automatically. 13 | # This script is idempotent, so that you can run it at any time and get an expectable outcome. 14 | # Add necessary setup steps to this file. 15 | 16 | puts "== Installing dependencies ==" 17 | system! "gem install bundler --conservative" 18 | system("bundle check") || system!("bundle install") 19 | 20 | # puts "\n== Copying sample files ==" 21 | # unless File.exist?("config/database.yml") 22 | # FileUtils.cp "config/database.yml.sample", "config/database.yml" 23 | # end 24 | 25 | puts "\n== Preparing database ==" 26 | system! "bin/rails db:prepare" 27 | 28 | puts "\n== Removing old logs and tempfiles ==" 29 | system! "bin/rails log:clear tmp:clear" 30 | 31 | puts "\n== Restarting application server ==" 32 | system! "bin/rails restart" 33 | end 34 | -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Define an application-wide content security policy. 4 | # See the Securing Rails Applications Guide for more information: 5 | # https://guides.rubyonrails.org/security.html#content-security-policy-header 6 | 7 | # Rails.application.configure do 8 | # config.content_security_policy do |policy| 9 | # policy.default_src :self, :https 10 | # policy.font_src :self, :https, :data 11 | # policy.img_src :self, :https, :data 12 | # policy.object_src :none 13 | # policy.script_src :self, :https 14 | # policy.style_src :self, :https 15 | # # Specify URI for violation reports 16 | # # policy.report_uri "/csp-violation-report-endpoint" 17 | # end 18 | # 19 | # # Generate session nonces for permitted importmap and inline scripts 20 | # config.content_security_policy_nonce_generator = ->(request) { request.session.id.to_s } 21 | # config.content_security_policy_nonce_directives = %w(script-src) 22 | # 23 | # # Report violations without enforcing the policy. 24 | # # config.content_security_policy_report_only = true 25 | # end 26 | -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- 1 | test: 2 | service: Disk 3 | root: <%= Rails.root.join("tmp/storage") %> 4 | 5 | local: 6 | service: Disk 7 | root: <%= Rails.root.join("storage") %> 8 | 9 | # Use bin/rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key) 10 | # amazon: 11 | # service: S3 12 | # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %> 13 | # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %> 14 | # region: us-east-1 15 | # bucket: your_own_bucket-<%= Rails.env %> 16 | 17 | # Remember not to checkin your GCS keyfile to a repository 18 | # google: 19 | # service: GCS 20 | # project: your_project 21 | # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %> 22 | # bucket: your_own_bucket-<%= Rails.env %> 23 | 24 | # Use bin/rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key) 25 | # microsoft: 26 | # service: AzureStorage 27 | # storage_account_name: your_account_name 28 | # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %> 29 | # container: your_container_name-<%= Rails.env %> 30 | 31 | # mirror: 32 | # service: Mirror 33 | # primary: local 34 | # mirrors: [ amazon, google, microsoft ] 35 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | AllCops: 2 | NewCops: enable 3 | Exclude: 4 | - "db/**/*" 5 | - "bin/*" 6 | - "config/**/*" 7 | - "Guardfile" 8 | - "Rakefile" 9 | - "node_modules/**/*" 10 | 11 | DisplayCopNames: true 12 | 13 | Layout/LineLength: 14 | Max: 120 15 | Metrics/MethodLength: 16 | Include: 17 | - "app/controllers/*" 18 | - "app/models/*" 19 | Max: 20 20 | Metrics/AbcSize: 21 | Include: 22 | - "app/controllers/*" 23 | - "app/models/*" 24 | Max: 50 25 | Metrics/ClassLength: 26 | Max: 150 27 | Metrics/BlockLength: 28 | AllowedMethods: ['describe'] 29 | Max: 30 30 | 31 | Style/Documentation: 32 | Enabled: false 33 | Style/ClassAndModuleChildren: 34 | Enabled: false 35 | Style/EachForSimpleLoop: 36 | Enabled: false 37 | Style/AndOr: 38 | Enabled: false 39 | Style/DefWithParentheses: 40 | Enabled: false 41 | Style/FrozenStringLiteralComment: 42 | EnforcedStyle: never 43 | 44 | Layout/HashAlignment: 45 | EnforcedColonStyle: key 46 | Layout/ExtraSpacing: 47 | AllowForAlignment: false 48 | Layout/MultilineMethodCallIndentation: 49 | Enabled: true 50 | EnforcedStyle: indented 51 | Lint/RaiseException: 52 | Enabled: false 53 | Lint/StructNewOverride: 54 | Enabled: false 55 | Style/HashEachMethods: 56 | Enabled: false 57 | Style/HashTransformKeys: 58 | Enabled: false 59 | Style/HashTransformValues: 60 | Enabled: false -------------------------------------------------------------------------------- /.github/workflows/linters.yml: -------------------------------------------------------------------------------- 1 | name: Linters 2 | 3 | on: pull_request 4 | 5 | env: 6 | FORCE_COLOR: 1 7 | 8 | jobs: 9 | rubocop: 10 | name: Rubocop 11 | runs-on: ubuntu-22.04 12 | steps: 13 | - uses: actions/checkout@v3 14 | - uses: actions/setup-ruby@v1 15 | with: 16 | ruby-version: 3.1.x 17 | - name: Setup Rubocop 18 | run: | 19 | gem install --no-document rubocop -v '>= 1.0, < 2.0' # https://docs.rubocop.org/en/stable/installation/ 20 | [ -f .rubocop.yml ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/ror/.rubocop.yml 21 | - name: Rubocop Report 22 | run: rubocop --color 23 | stylelint: 24 | name: Stylelint 25 | runs-on: ubuntu-22.04 26 | steps: 27 | - uses: actions/checkout@v3 28 | - uses: actions/setup-node@v3 29 | with: 30 | node-version: "18.x" 31 | - name: Setup Stylelint 32 | run: | 33 | npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x 34 | [ -f .stylelintrc.json ] || wget https://raw.githubusercontent.com/microverseinc/linters-config/master/ror/.stylelintrc.json 35 | - name: Stylelint Report 36 | run: npx stylelint "**/*.{css,scss}" 37 | nodechecker: 38 | name: node_modules checker 39 | runs-on: ubuntu-22.04 40 | steps: 41 | - uses: actions/checkout@v3 42 | - name: Check node_modules existence 43 | run: | 44 | if [ -d "node_modules/" ]; then echo -e "\e[1;31mThe node_modules/ folder was pushed to the repo. Please remove it from the GitHub repository and try again."; echo -e "\e[1;32mYou can set up a .gitignore file with this folder included on it to prevent this from happening in the future." && exit 1; fi -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | We're sorry, but something went wrong (500) 5 | 6 | 55 | 56 | 57 | 58 | 59 |
60 |
61 |

We're sorry, but something went wrong.

62 |
63 |

If you are the application owner check the logs for more information.

64 |
65 | 66 | 67 | -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- 1 | # Puma can serve each request in a thread from an internal thread pool. 2 | # The `threads` method setting takes two numbers: a minimum and maximum. 3 | # Any libraries that use thread pools should be configured to match 4 | # the maximum value specified for Puma. Default is set to 5 threads for minimum 5 | # and maximum; this matches the default thread size of Active Record. 6 | # 7 | max_threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 } 8 | min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count } 9 | threads min_threads_count, max_threads_count 10 | 11 | # Specifies the `worker_timeout` threshold that Puma will use to wait before 12 | # terminating a worker in development environments. 13 | # 14 | worker_timeout 3600 if ENV.fetch("RAILS_ENV", "development") == "development" 15 | 16 | # Specifies the `port` that Puma will listen on to receive requests; default is 3000. 17 | # 18 | port ENV.fetch("PORT") { 3000 } 19 | 20 | # Specifies the `environment` that Puma will run in. 21 | # 22 | environment ENV.fetch("RAILS_ENV") { "development" } 23 | 24 | # Specifies the `pidfile` that Puma will use. 25 | pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" } 26 | 27 | # Specifies the number of `workers` to boot in clustered mode. 28 | # Workers are forked web server processes. If using threads and workers together 29 | # the concurrency of the application would be max `threads` * `workers`. 30 | # Workers do not work on JRuby or Windows (both of which do not support 31 | # processes). 32 | # 33 | # workers ENV.fetch("WEB_CONCURRENCY") { 2 } 34 | 35 | # Use the `preload_app!` method when specifying a `workers` number. 36 | # This directive tells Puma to first boot the application and load code 37 | # before forking the application. This takes advantage of Copy On Write 38 | # process behavior so workers use less memory. 39 | # 40 | # preload_app! 41 | 42 | # Allow puma to be restarted by `bin/rails restart` command. 43 | plugin :tmp_restart 44 | -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The change you wanted was rejected (422) 5 | 6 | 55 | 56 | 57 | 58 | 59 |
60 |
61 |

The change you wanted was rejected.

62 |

Maybe you tried to change something you didn't have access to.

63 |
64 |

If you are the application owner check the logs for more information.

65 |
66 | 67 | 68 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The page you were looking for doesn't exist (404) 5 | 6 | 55 | 56 | 57 | 58 | 59 |
60 |
61 |

The page you were looking for doesn't exist.

62 |

You may have mistyped the address or the page may have moved.

63 |
64 |

If you are the application owner check the logs for more information.

65 |
66 | 67 | 68 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 | 4 | ruby '3.2.2' 5 | 6 | # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" 7 | gem 'rails', '~> 7.0.8' 8 | 9 | # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails] 10 | gem 'sprockets-rails' 11 | 12 | # Use postgresql as the database for Active Record 13 | gem 'pg', '~> 1.1' 14 | 15 | # Use the Puma web server [https://github.com/puma/puma] 16 | gem 'puma', '~> 5.0' 17 | gem 'rubocop', '>= 1.0', '< 2.0' 18 | 19 | # Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails] 20 | gem 'jsbundling-rails' 21 | 22 | # Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev] 23 | gem 'turbo-rails' 24 | 25 | # Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev] 26 | gem 'stimulus-rails' 27 | 28 | # Build JSON APIs with ease [https://github.com/rails/jbuilder] 29 | gem 'jbuilder' 30 | 31 | # Use Redis adapter to run Action Cable in production 32 | gem 'redis', '~> 4.0' 33 | 34 | # Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis] 35 | # gem "kredis" 36 | 37 | # Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword] 38 | # gem "bcrypt", "~> 3.1.7" 39 | 40 | # Windows does not include zoneinfo files, so bundle the tzinfo-data gem 41 | gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby] 42 | 43 | # Reduces boot times through caching; required in config/boot.rb 44 | gem 'bootsnap', require: false 45 | 46 | # Use Sass to process CSS 47 | # gem "sassc-rails" 48 | 49 | # Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images] 50 | # gem "image_processing", "~> 1.2" 51 | 52 | group :development, :test do 53 | # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem 54 | gem 'debug', platforms: %i[mri mingw x64_mingw] 55 | end 56 | 57 | group :development do 58 | # Use console on exceptions pages [https://github.com/rails/web-console] 59 | gem 'web-console' 60 | 61 | # Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler] 62 | # gem "rack-mini-profiler" 63 | 64 | # Speed up commands on slow machines / big apps [https://github.com/rails/spring] 65 | # gem "spring" 66 | end 67 | 68 | group :test do 69 | # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing] 70 | gem 'capybara' 71 | gem 'selenium-webdriver' 72 | end 73 | -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- 1 | require "active_support/core_ext/integer/time" 2 | 3 | # The test environment is used exclusively to run your application's 4 | # test suite. You never need to work with it otherwise. Remember that 5 | # your test database is "scratch space" for the test suite and is wiped 6 | # and recreated between test runs. Don't rely on the data there! 7 | 8 | Rails.application.configure do 9 | # Settings specified here will take precedence over those in config/application.rb. 10 | 11 | # Turn false under Spring and add config.action_view.cache_template_loading = true. 12 | config.cache_classes = true 13 | 14 | # Eager loading loads your whole application. When running a single test locally, 15 | # this probably isn't necessary. It's a good idea to do in a continuous integration 16 | # system, or in some way before deploying your code. 17 | config.eager_load = ENV["CI"].present? 18 | 19 | # Configure public file server for tests with Cache-Control for performance. 20 | config.public_file_server.enabled = true 21 | config.public_file_server.headers = { 22 | "Cache-Control" => "public, max-age=#{1.hour.to_i}" 23 | } 24 | 25 | # Show full error reports and disable caching. 26 | config.consider_all_requests_local = true 27 | config.action_controller.perform_caching = false 28 | config.cache_store = :null_store 29 | 30 | # Raise exceptions instead of rendering exception templates. 31 | config.action_dispatch.show_exceptions = false 32 | 33 | # Disable request forgery protection in test environment. 34 | config.action_controller.allow_forgery_protection = false 35 | 36 | # Store uploaded files on the local file system in a temporary directory. 37 | config.active_storage.service = :test 38 | 39 | config.action_mailer.perform_caching = false 40 | 41 | # Tell Action Mailer not to deliver emails to the real world. 42 | # The :test delivery method accumulates sent emails in the 43 | # ActionMailer::Base.deliveries array. 44 | config.action_mailer.delivery_method = :test 45 | 46 | # Print deprecation notices to the stderr. 47 | config.active_support.deprecation = :stderr 48 | 49 | # Raise exceptions for disallowed deprecations. 50 | config.active_support.disallowed_deprecation = :raise 51 | 52 | # Tell Active Support which deprecation messages to disallow. 53 | config.active_support.disallowed_deprecation_warnings = [] 54 | 55 | # Raises error for missing translations. 56 | # config.i18n.raise_on_missing_translations = true 57 | 58 | # Annotate rendered view with file names. 59 | # config.action_view.annotate_rendered_view_with_filenames = true 60 | end 61 | -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- 1 | require "active_support/core_ext/integer/time" 2 | 3 | Rails.application.configure do 4 | # Settings specified here will take precedence over those in config/application.rb. 5 | 6 | # In the development environment your application's code is reloaded any time 7 | # it changes. This slows down response time but is perfect for development 8 | # since you don't have to restart the web server when you make code changes. 9 | config.cache_classes = false 10 | 11 | # Do not eager load code on boot. 12 | config.eager_load = false 13 | 14 | # Show full error reports. 15 | config.consider_all_requests_local = true 16 | 17 | # Enable server timing 18 | config.server_timing = true 19 | 20 | # Enable/disable caching. By default caching is disabled. 21 | # Run rails dev:cache to toggle caching. 22 | if Rails.root.join("tmp/caching-dev.txt").exist? 23 | config.action_controller.perform_caching = true 24 | config.action_controller.enable_fragment_cache_logging = true 25 | 26 | config.cache_store = :memory_store 27 | config.public_file_server.headers = { 28 | "Cache-Control" => "public, max-age=#{2.days.to_i}" 29 | } 30 | else 31 | config.action_controller.perform_caching = false 32 | 33 | config.cache_store = :null_store 34 | end 35 | 36 | # Store uploaded files on the local file system (see config/storage.yml for options). 37 | config.active_storage.service = :local 38 | 39 | # Don't care if the mailer can't send. 40 | config.action_mailer.raise_delivery_errors = false 41 | 42 | config.action_mailer.perform_caching = false 43 | 44 | # Print deprecation notices to the Rails logger. 45 | config.active_support.deprecation = :log 46 | 47 | # Raise exceptions for disallowed deprecations. 48 | config.active_support.disallowed_deprecation = :raise 49 | 50 | # Tell Active Support which deprecation messages to disallow. 51 | config.active_support.disallowed_deprecation_warnings = [] 52 | 53 | # Raise an error on page load if there are pending migrations. 54 | config.active_record.migration_error = :page_load 55 | 56 | # Highlight code that triggered database queries in logs. 57 | config.active_record.verbose_query_logs = true 58 | 59 | # Suppress logger output for asset requests. 60 | config.assets.quiet = true 61 | 62 | # Raises error for missing translations. 63 | # config.i18n.raise_on_missing_translations = true 64 | 65 | # Annotate rendered view with file names. 66 | # config.action_view.annotate_rendered_view_with_filenames = true 67 | 68 | # Uncomment if you wish to allow Action Cable access from any origin. 69 | # config.action_cable.disable_request_forgery_protection = true 70 | end 71 | -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # frozen_string_literal: true 3 | 4 | # 5 | # This file was generated by Bundler. 6 | # 7 | # The application 'bundle' is installed as part of a gem, and 8 | # this file is here to facilitate running it. 9 | # 10 | 11 | require "rubygems" 12 | 13 | m = Module.new do 14 | module_function 15 | 16 | def invoked_as_script? 17 | File.expand_path($0) == File.expand_path(__FILE__) 18 | end 19 | 20 | def env_var_version 21 | ENV["BUNDLER_VERSION"] 22 | end 23 | 24 | def cli_arg_version 25 | return unless invoked_as_script? # don't want to hijack other binstubs 26 | return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update` 27 | bundler_version = nil 28 | update_index = nil 29 | ARGV.each_with_index do |a, i| 30 | if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN 31 | bundler_version = a 32 | end 33 | next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/ 34 | bundler_version = $1 35 | update_index = i 36 | end 37 | bundler_version 38 | end 39 | 40 | def gemfile 41 | gemfile = ENV["BUNDLE_GEMFILE"] 42 | return gemfile if gemfile && !gemfile.empty? 43 | 44 | File.expand_path("../Gemfile", __dir__) 45 | end 46 | 47 | def lockfile 48 | lockfile = 49 | case File.basename(gemfile) 50 | when "gems.rb" then gemfile.sub(/\.rb$/, ".locked") 51 | else "#{gemfile}.lock" 52 | end 53 | File.expand_path(lockfile) 54 | end 55 | 56 | def lockfile_version 57 | return unless File.file?(lockfile) 58 | lockfile_contents = File.read(lockfile) 59 | return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/ 60 | Regexp.last_match(1) 61 | end 62 | 63 | def bundler_requirement 64 | @bundler_requirement ||= 65 | env_var_version || 66 | cli_arg_version || 67 | bundler_requirement_for(lockfile_version) 68 | end 69 | 70 | def bundler_requirement_for(version) 71 | return "#{Gem::Requirement.default}.a" unless version 72 | 73 | bundler_gem_version = Gem::Version.new(version) 74 | 75 | bundler_gem_version.approximate_recommendation 76 | end 77 | 78 | def load_bundler! 79 | ENV["BUNDLE_GEMFILE"] ||= gemfile 80 | 81 | activate_bundler 82 | end 83 | 84 | def activate_bundler 85 | gem_error = activation_error_handling do 86 | gem "bundler", bundler_requirement 87 | end 88 | return if gem_error.nil? 89 | require_error = activation_error_handling do 90 | require "bundler/version" 91 | end 92 | return if require_error.nil? && Gem::Requirement.new(bundler_requirement).satisfied_by?(Gem::Version.new(Bundler::VERSION)) 93 | warn "Activating bundler (#{bundler_requirement}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_requirement}'`" 94 | exit 42 95 | end 96 | 97 | def activation_error_handling 98 | yield 99 | nil 100 | rescue StandardError, LoadError => e 101 | e 102 | end 103 | end 104 | 105 | m.load_bundler! 106 | 107 | if m.invoked_as_script? 108 | load Gem.bin_path("bundler", "bundle") 109 | end 110 | -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- 1 | # PostgreSQL. Versions 9.3 and up are supported. 2 | # 3 | # Install the pg driver: 4 | # gem install pg 5 | # On macOS with Homebrew: 6 | # gem install pg -- --with-pg-config=/usr/local/bin/pg_config 7 | # On macOS with MacPorts: 8 | # gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config 9 | # On Windows: 10 | # gem install pg 11 | # Choose the win32 build. 12 | # Install PostgreSQL and put its /bin directory on your path. 13 | # 14 | # Configure Using Gemfile 15 | # gem "pg" 16 | # 17 | default: &default 18 | adapter: postgresql 19 | encoding: unicode 20 | # For details on connection pooling, see Rails configuration guide 21 | # https://guides.rubyonrails.org/configuring.html#database-pooling 22 | pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> 23 | 24 | development: 25 | <<: *default 26 | database: Hello_Rails_React_development 27 | 28 | # The specified database role being used to connect to postgres. 29 | # To create additional roles in postgres see `$ createuser --help`. 30 | # When left blank, postgres will use the default role. This is 31 | # the same name as the operating system user running Rails. 32 | #username: Hello_Rails_React 33 | 34 | # The password associated with the postgres role (username). 35 | #password: 36 | 37 | # Connect on a TCP socket. Omitted by default since the client uses a 38 | # domain socket that doesn't need configuration. Windows does not have 39 | # domain sockets, so uncomment these lines. 40 | #host: localhost 41 | 42 | # The TCP port the server listens on. Defaults to 5432. 43 | # If your server runs on a different port number, change accordingly. 44 | #port: 5432 45 | 46 | # Schema search path. The server defaults to $user,public 47 | #schema_search_path: myapp,sharedapp,public 48 | 49 | # Minimum log levels, in increasing order: 50 | # debug5, debug4, debug3, debug2, debug1, 51 | # log, notice, warning, error, fatal, and panic 52 | # Defaults to warning. 53 | #min_messages: notice 54 | 55 | # Warning: The database defined as "test" will be erased and 56 | # re-generated from your development database when you run "rake". 57 | # Do not set this db to the same as development or production. 58 | test: 59 | <<: *default 60 | database: Hello_Rails_React_test 61 | 62 | # As with config/credentials.yml, you never want to store sensitive information, 63 | # like your database password, in your source code. If your source code is 64 | # ever seen by anyone, they now have access to your database. 65 | # 66 | # Instead, provide the password or a full connection URL as an environment 67 | # variable when you boot the app. For example: 68 | # 69 | # DATABASE_URL="postgres://myuser:mypass@localhost/somedatabase" 70 | # 71 | # If the connection URL is provided in the special DATABASE_URL environment 72 | # variable, Rails will automatically merge its configuration values on top of 73 | # the values provided in this file. Alternatively, you can specify a connection 74 | # URL environment variable explicitly: 75 | # 76 | # production: 77 | # url: <%= ENV["MY_APP_DATABASE_URL"] %> 78 | # 79 | # Read https://guides.rubyonrails.org/configuring.html#configuring-a-database 80 | # for a full overview on how database connection configuration can be specified. 81 | # 82 | production: 83 | <<: *default 84 | database: Hello_Rails_React_production 85 | username: Hello_Rails_React 86 | password: <%= ENV["HELLO_RAILS_REACT_DATABASE_PASSWORD"] %> 87 | -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- 1 | require "active_support/core_ext/integer/time" 2 | 3 | Rails.application.configure do 4 | # Settings specified here will take precedence over those in config/application.rb. 5 | 6 | # Code is not reloaded between requests. 7 | config.cache_classes = true 8 | 9 | # Eager load code on boot. This eager loads most of Rails and 10 | # your application in memory, allowing both threaded web servers 11 | # and those relying on copy on write to perform better. 12 | # Rake tasks automatically ignore this option for performance. 13 | config.eager_load = true 14 | 15 | # Full error reports are disabled and caching is turned on. 16 | config.consider_all_requests_local = false 17 | config.action_controller.perform_caching = true 18 | 19 | # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"] 20 | # or in config/master.key. This key is used to decrypt credentials (and other encrypted files). 21 | # config.require_master_key = true 22 | 23 | # Disable serving static files from the `/public` folder by default since 24 | # Apache or NGINX already handles this. 25 | config.public_file_server.enabled = ENV["RAILS_SERVE_STATIC_FILES"].present? 26 | 27 | # Compress CSS using a preprocessor. 28 | # config.assets.css_compressor = :sass 29 | 30 | # Do not fallback to assets pipeline if a precompiled asset is missed. 31 | config.assets.compile = false 32 | 33 | # Enable serving of images, stylesheets, and JavaScripts from an asset server. 34 | # config.asset_host = "http://assets.example.com" 35 | 36 | # Specifies the header that your server uses for sending files. 37 | # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for Apache 38 | # config.action_dispatch.x_sendfile_header = "X-Accel-Redirect" # for NGINX 39 | 40 | # Store uploaded files on the local file system (see config/storage.yml for options). 41 | config.active_storage.service = :local 42 | 43 | # Mount Action Cable outside main process or domain. 44 | # config.action_cable.mount_path = nil 45 | # config.action_cable.url = "wss://example.com/cable" 46 | # config.action_cable.allowed_request_origins = [ "http://example.com", /http:\/\/example.*/ ] 47 | 48 | # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. 49 | # config.force_ssl = true 50 | 51 | # Include generic and useful information about system operation, but avoid logging too much 52 | # information to avoid inadvertent exposure of personally identifiable information (PII). 53 | config.log_level = :info 54 | 55 | # Prepend all log lines with the following tags. 56 | config.log_tags = [ :request_id ] 57 | 58 | # Use a different cache store in production. 59 | # config.cache_store = :mem_cache_store 60 | 61 | # Use a real queuing backend for Active Job (and separate queues per environment). 62 | # config.active_job.queue_adapter = :resque 63 | # config.active_job.queue_name_prefix = "Hello_Rails_React_production" 64 | 65 | config.action_mailer.perform_caching = false 66 | 67 | # Ignore bad email addresses and do not raise email delivery errors. 68 | # Set this to true and configure the email server for immediate delivery to raise delivery errors. 69 | # config.action_mailer.raise_delivery_errors = false 70 | 71 | # Enable locale fallbacks for I18n (makes lookups for any locale fall back to 72 | # the I18n.default_locale when a translation cannot be found). 73 | config.i18n.fallbacks = true 74 | 75 | # Don't log any deprecations. 76 | config.active_support.report_deprecations = false 77 | 78 | # Use default logging formatter so that PID and timestamp are not suppressed. 79 | config.log_formatter = ::Logger::Formatter.new 80 | 81 | # Use a different logger for distributed setups. 82 | # require "syslog/logger" 83 | # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new "app-name") 84 | 85 | if ENV["RAILS_LOG_TO_STDOUT"].present? 86 | logger = ActiveSupport::Logger.new(STDOUT) 87 | logger.formatter = config.log_formatter 88 | config.logger = ActiveSupport::TaggedLogging.new(logger) 89 | end 90 | 91 | # Do not dump schema after migrations. 92 | config.active_record.dump_schema_after_migration = false 93 | end 94 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Hello_Rails_React

4 | 5 |
6 | 7 | # 📗 Table of Contents 8 | 9 | - [📗 Table of Contents](#-table-of-contents) 10 | - [📖 Hello\_Rails\_React ](#-hello_rails_react-) 11 | - [🛠 Built With ](#-built-with-) 12 | - [Tech Stack ](#tech-stack-) 13 | - [Key Features ](#key-features-) 14 | - [💻 Getting Started ](#-getting-started-) 15 | - [Prerequisites](#prerequisites) 16 | - [Setup](#setup) 17 | - [Install](#install) 18 | - [Usage](#usage) 19 | - [👥 Author ](#-author-) 20 | - [🔭 Future Features ](#-future-features-) 21 | - [🤝 Contributing ](#-contributing-) 22 | - [⭐️ Show your support ](#️-show-your-support-) 23 | - [🙏 Acknowledgments ](#-acknowledgments-) 24 | - [📝 License ](#-license-) 25 | 26 | 27 | 28 | # 📖 Hello_Rails_React 29 | 30 | **Hello_Rails_React** Hello_Rails_React is a beginner-friendly project that showcases the integration of a Ruby on Rails back-end with a React front-end using Webpack. This project aims to support your learning journey by helping you achieve the following objectives: 31 | 32 | - Establish a connection between a Ruby on Rails back-end and a React front-end. 33 | - Develop a comprehensive understanding of the advantages and disadvantages associated with various approaches for connecting Ruby on Rails with React. 34 | 35 | ## 🛠 Built With 36 | 37 | ### Tech Stack 38 | 39 |
40 | Technologies 41 | 47 |
48 |
49 | Linters 50 | 54 |
55 | 56 | 57 | ### Key Features 58 | 59 | - [x] **Integration of Ruby on Rails and React** 60 | - [x] **API Endpoint for Generating Random Greetings** 61 | - [x] **Navigation Using React Router** 62 | - [x] **State Management with Redux** 63 | - [x] **Setting the Static View as the Root** 64 | 65 | 66 |

(back to top)

67 | 68 | 69 | ## 💻 Getting Started 70 | 71 | To get a local copy up and running, follow these steps. 72 | 73 | ### Prerequisites 74 | 75 | Before you begin, make sure you have the following prerequisites installed on your system: 76 | 77 | - Ruby: You need Ruby to run the Ruby on Rails application. 78 | - Bundler: Bundler is used to manage gem dependencies in your Ruby project. 79 | 80 | ### Setup 81 | 82 | Clone this repository to your desired folder: 83 | 84 | sh
85 | cd my-folder
86 | git clone https://github.com/ahmedeid6842/Hello_Rails_React.git 87 | 88 | ### Install 89 | 90 | Install this project with: 91 | 92 | - gem install rails 93 | - bundle install 94 | - npm install 95 | - npm install -g webpack 96 | - npm run build 97 | 98 | 99 | 100 | ### Usage 101 | 102 | To run the project, execute the following command: 103 | 104 | ./bin/dev 105 | 106 | ## 👥 Author 107 | 108 | **Ahmed Eid 🙋‍♂️** 109 | - Github: [@ahmedeid6842](https://github.com/ahmedeid6842/) 110 | - LinkedIn : [Ahmed Eid](https://www.linkedin.com/in/ahmed-eid-0018571b1/) 111 | - Twitter: [@ahmedeid2684](https://twitter.com/ahmedeid2684) 112 | 113 |

(back to top)

114 | 115 | 116 | ## 🔭 Future Features 117 | 118 | - [ ] **Personalized Greetings** 119 | 120 | 121 |

(back to top)

122 | 123 | ## 🤝 Contributing 124 | 125 | Contributions, issues, and feature requests are welcome! 126 | 127 | Feel free to check the [issues page](https://github.com/ahmedeid6842/Hello_Rails_React/issues). 128 | 129 |

(back to top)

130 | 131 | 132 | ## ⭐️ Show your support 133 | 134 | If you like this project please feel free to send me corrections for make it better I would feel glad to read your comments. 135 | And think If you enjoy gift me a star. 136 | 137 |

(back to top)

138 | 139 | ## 🙏 Acknowledgments 140 | 141 | - Microverse for providing the opportunity to learn Git and GitHub in a collaborative environment. 142 | 143 |

(back to top)

144 | 145 | 146 | ## 📝 License 147 | 148 | This project is licensed under the MIT License - you can click here to have more details [MIT](./LICENSE) licensed. 149 | 150 |

(back to top)

-------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | actioncable (7.0.8) 5 | actionpack (= 7.0.8) 6 | activesupport (= 7.0.8) 7 | nio4r (~> 2.0) 8 | websocket-driver (>= 0.6.1) 9 | actionmailbox (7.0.8) 10 | actionpack (= 7.0.8) 11 | activejob (= 7.0.8) 12 | activerecord (= 7.0.8) 13 | activestorage (= 7.0.8) 14 | activesupport (= 7.0.8) 15 | mail (>= 2.7.1) 16 | net-imap 17 | net-pop 18 | net-smtp 19 | actionmailer (7.0.8) 20 | actionpack (= 7.0.8) 21 | actionview (= 7.0.8) 22 | activejob (= 7.0.8) 23 | activesupport (= 7.0.8) 24 | mail (~> 2.5, >= 2.5.4) 25 | net-imap 26 | net-pop 27 | net-smtp 28 | rails-dom-testing (~> 2.0) 29 | actionpack (7.0.8) 30 | actionview (= 7.0.8) 31 | activesupport (= 7.0.8) 32 | rack (~> 2.0, >= 2.2.4) 33 | rack-test (>= 0.6.3) 34 | rails-dom-testing (~> 2.0) 35 | rails-html-sanitizer (~> 1.0, >= 1.2.0) 36 | actiontext (7.0.8) 37 | actionpack (= 7.0.8) 38 | activerecord (= 7.0.8) 39 | activestorage (= 7.0.8) 40 | activesupport (= 7.0.8) 41 | globalid (>= 0.6.0) 42 | nokogiri (>= 1.8.5) 43 | actionview (7.0.8) 44 | activesupport (= 7.0.8) 45 | builder (~> 3.1) 46 | erubi (~> 1.4) 47 | rails-dom-testing (~> 2.0) 48 | rails-html-sanitizer (~> 1.1, >= 1.2.0) 49 | activejob (7.0.8) 50 | activesupport (= 7.0.8) 51 | globalid (>= 0.3.6) 52 | activemodel (7.0.8) 53 | activesupport (= 7.0.8) 54 | activerecord (7.0.8) 55 | activemodel (= 7.0.8) 56 | activesupport (= 7.0.8) 57 | activestorage (7.0.8) 58 | actionpack (= 7.0.8) 59 | activejob (= 7.0.8) 60 | activerecord (= 7.0.8) 61 | activesupport (= 7.0.8) 62 | marcel (~> 1.0) 63 | mini_mime (>= 1.1.0) 64 | activesupport (7.0.8) 65 | concurrent-ruby (~> 1.0, >= 1.0.2) 66 | i18n (>= 1.6, < 2) 67 | minitest (>= 5.1) 68 | tzinfo (~> 2.0) 69 | addressable (2.8.5) 70 | public_suffix (>= 2.0.2, < 6.0) 71 | ast (2.4.2) 72 | bindex (0.8.1) 73 | bootsnap (1.17.0) 74 | msgpack (~> 1.2) 75 | builder (3.2.4) 76 | capybara (3.39.2) 77 | addressable 78 | matrix 79 | mini_mime (>= 0.1.3) 80 | nokogiri (~> 1.8) 81 | rack (>= 1.6.0) 82 | rack-test (>= 0.6.3) 83 | regexp_parser (>= 1.5, < 3.0) 84 | xpath (~> 3.2) 85 | concurrent-ruby (1.2.2) 86 | crass (1.0.6) 87 | date (3.3.4) 88 | debug (1.8.0) 89 | irb (>= 1.5.0) 90 | reline (>= 0.3.1) 91 | erubi (1.12.0) 92 | globalid (1.2.1) 93 | activesupport (>= 6.1) 94 | i18n (1.14.1) 95 | concurrent-ruby (~> 1.0) 96 | io-console (0.6.0) 97 | irb (1.8.3) 98 | rdoc 99 | reline (>= 0.3.8) 100 | jbuilder (2.11.5) 101 | actionview (>= 5.0.0) 102 | activesupport (>= 5.0.0) 103 | jsbundling-rails (1.2.1) 104 | railties (>= 6.0.0) 105 | json (2.6.3) 106 | language_server-protocol (3.17.0.3) 107 | loofah (2.21.4) 108 | crass (~> 1.0.2) 109 | nokogiri (>= 1.12.0) 110 | mail (2.8.1) 111 | mini_mime (>= 0.1.1) 112 | net-imap 113 | net-pop 114 | net-smtp 115 | marcel (1.0.2) 116 | matrix (0.4.2) 117 | method_source (1.0.0) 118 | mini_mime (1.1.5) 119 | minitest (5.20.0) 120 | msgpack (1.7.2) 121 | net-imap (0.4.4) 122 | date 123 | net-protocol 124 | net-pop (0.1.2) 125 | net-protocol 126 | net-protocol (0.2.2) 127 | timeout 128 | net-smtp (0.4.0) 129 | net-protocol 130 | nio4r (2.5.9) 131 | nokogiri (1.15.4-x86_64-linux) 132 | racc (~> 1.4) 133 | parallel (1.23.0) 134 | parser (3.2.2.4) 135 | ast (~> 2.4.1) 136 | racc 137 | pg (1.5.4) 138 | psych (5.1.1.1) 139 | stringio 140 | public_suffix (5.0.3) 141 | puma (5.6.7) 142 | nio4r (~> 2.0) 143 | racc (1.7.3) 144 | rack (2.2.8) 145 | rack-test (2.1.0) 146 | rack (>= 1.3) 147 | rails (7.0.8) 148 | actioncable (= 7.0.8) 149 | actionmailbox (= 7.0.8) 150 | actionmailer (= 7.0.8) 151 | actionpack (= 7.0.8) 152 | actiontext (= 7.0.8) 153 | actionview (= 7.0.8) 154 | activejob (= 7.0.8) 155 | activemodel (= 7.0.8) 156 | activerecord (= 7.0.8) 157 | activestorage (= 7.0.8) 158 | activesupport (= 7.0.8) 159 | bundler (>= 1.15.0) 160 | railties (= 7.0.8) 161 | rails-dom-testing (2.2.0) 162 | activesupport (>= 5.0.0) 163 | minitest 164 | nokogiri (>= 1.6) 165 | rails-html-sanitizer (1.6.0) 166 | loofah (~> 2.21) 167 | nokogiri (~> 1.14) 168 | railties (7.0.8) 169 | actionpack (= 7.0.8) 170 | activesupport (= 7.0.8) 171 | method_source 172 | rake (>= 12.2) 173 | thor (~> 1.0) 174 | zeitwerk (~> 2.5) 175 | rainbow (3.1.1) 176 | rake (13.1.0) 177 | rdoc (6.6.0) 178 | psych (>= 4.0.0) 179 | redis (4.8.1) 180 | regexp_parser (2.8.2) 181 | reline (0.4.0) 182 | io-console (~> 0.5) 183 | rexml (3.2.6) 184 | rubocop (1.57.2) 185 | json (~> 2.3) 186 | language_server-protocol (>= 3.17.0) 187 | parallel (~> 1.10) 188 | parser (>= 3.2.2.4) 189 | rainbow (>= 2.2.2, < 4.0) 190 | regexp_parser (>= 1.8, < 3.0) 191 | rexml (>= 3.2.5, < 4.0) 192 | rubocop-ast (>= 1.28.1, < 2.0) 193 | ruby-progressbar (~> 1.7) 194 | unicode-display_width (>= 2.4.0, < 3.0) 195 | rubocop-ast (1.30.0) 196 | parser (>= 3.2.1.0) 197 | ruby-progressbar (1.13.0) 198 | rubyzip (2.3.2) 199 | selenium-webdriver (4.15.0) 200 | rexml (~> 3.2, >= 3.2.5) 201 | rubyzip (>= 1.2.2, < 3.0) 202 | websocket (~> 1.0) 203 | sprockets (4.2.1) 204 | concurrent-ruby (~> 1.0) 205 | rack (>= 2.2.4, < 4) 206 | sprockets-rails (3.4.2) 207 | actionpack (>= 5.2) 208 | activesupport (>= 5.2) 209 | sprockets (>= 3.0.0) 210 | stimulus-rails (1.3.0) 211 | railties (>= 6.0.0) 212 | stringio (3.0.8) 213 | thor (1.3.0) 214 | timeout (0.4.1) 215 | turbo-rails (1.5.0) 216 | actionpack (>= 6.0.0) 217 | activejob (>= 6.0.0) 218 | railties (>= 6.0.0) 219 | tzinfo (2.0.6) 220 | concurrent-ruby (~> 1.0) 221 | unicode-display_width (2.5.0) 222 | web-console (4.2.1) 223 | actionview (>= 6.0.0) 224 | activemodel (>= 6.0.0) 225 | bindex (>= 0.4.0) 226 | railties (>= 6.0.0) 227 | websocket (1.2.10) 228 | websocket-driver (0.7.6) 229 | websocket-extensions (>= 0.1.0) 230 | websocket-extensions (0.1.5) 231 | xpath (3.2.0) 232 | nokogiri (~> 1.8) 233 | zeitwerk (2.6.12) 234 | 235 | PLATFORMS 236 | x86_64-linux 237 | 238 | DEPENDENCIES 239 | bootsnap 240 | capybara 241 | debug 242 | jbuilder 243 | jsbundling-rails 244 | pg (~> 1.1) 245 | puma (~> 5.0) 246 | rails (~> 7.0.8) 247 | redis (~> 4.0) 248 | rubocop (>= 1.0, < 2.0) 249 | selenium-webdriver 250 | sprockets-rails 251 | stimulus-rails 252 | turbo-rails 253 | tzinfo-data 254 | web-console 255 | 256 | RUBY VERSION 257 | ruby 3.2.2p53 258 | 259 | BUNDLED WITH 260 | 2.4.20 261 | --------------------------------------------------------------------------------