diff --git a/.rubocop.yml b/.rubocop.yml new file mode 100644 index 00000000..be4e59be --- /dev/null +++ b/.rubocop.yml @@ -0,0 +1,23 @@ +AllCops: + Exclude: + - "vendor/**/*" + - "db/**/*" + - "bin/*" + - "node_modules/**/*" + - "config/initializers/devise.rb" + - "config/environments/*.rb" + - "Gemfile" + - "Rakefile" + +Style/FrozenStringLiteralComment: + Enabled: false + +Style/ClassAndModuleChildren: + Enabled: false + +Style/Documentation: + Enabled: false + +Metrics/BlockLength: + Exclude: + - "config/routes.rb" diff --git a/Dockerfile b/Dockerfile index a498d272..0d189f00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,7 +51,7 @@ ARG UID=1000 ARG GID=1000 RUN apt-get update \ - && apt-get install -y --no-install-recommends build-essential curl libpq-dev \ + && apt-get install -y --no-install-recommends build-essential curl libpq-dev vim \ && rm -rf /var/lib/apt/lists/* /usr/share/doc /usr/share/man \ && apt-get clean \ && groupadd -g "${GID}" ruby \ diff --git a/Gemfile b/Gemfile index 79a31661..2f006faf 100644 --- a/Gemfile +++ b/Gemfile @@ -49,8 +49,13 @@ group :development, :test do # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem gem "debug", platforms: %i[ mri mingw x64_mingw ] + gem "rubocop", require: false + gem "rubocop-performance", require: false + gem "rubocop-rails", require: false + # Reduces boot times through caching; required in config/boot.rb gem "bootsnap", require: false + end group :development do @@ -70,3 +75,5 @@ group :test do gem "selenium-webdriver" gem "webdrivers" end + +gem "devise" \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index 86dcc1a2..8a15d008 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -68,6 +68,8 @@ GEM tzinfo (~> 2.0) addressable (2.8.1) public_suffix (>= 2.0.2, < 6.0) + ast (2.4.2) + bcrypt (3.1.18) bindex (0.8.1) bootsnap (1.15.0) msgpack (~> 1.2) @@ -90,6 +92,12 @@ GEM debug (1.6.3) irb (>= 1.3.6) reline (>= 0.3.1) + devise (4.9.2) + bcrypt (~> 3.0) + orm_adapter (~> 0.1) + railties (>= 4.1.0) + responders + warden (~> 1.2.3) erubi (1.11.0) globalid (1.0.0) activesupport (>= 5.0) @@ -103,6 +111,7 @@ GEM activesupport (>= 5.0.0) jsbundling-rails (1.0.3) railties (>= 6.0.0) + json (2.6.3) loofah (2.19.0) crass (~> 1.0.2) nokogiri (>= 1.5.9) @@ -123,8 +132,15 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.8) + nokogiri (1.13.9-aarch64-linux) + racc (~> 1.4) nokogiri (1.13.9-x86_64-linux) racc (~> 1.4) + orm_adapter (0.5.0) + parallel (1.23.0) + parser (3.2.2.3) + ast (~> 2.4.1) + racc pg (1.4.5) public_suffix (5.0.0) puma (6.0.0) @@ -161,6 +177,7 @@ GEM rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) + rainbow (3.1.1) rake (13.0.6) redis (5.0.5) redis-client (>= 0.9.0) @@ -169,7 +186,30 @@ GEM regexp_parser (2.6.1) reline (0.3.1) io-console (~> 0.5) + responders (3.1.0) + actionpack (>= 5.2) + railties (>= 5.2) rexml (3.2.5) + rubocop (1.52.1) + json (~> 2.3) + parallel (~> 1.10) + parser (>= 3.2.2.3) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 1.8, < 3.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.28.0, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.29.0) + parser (>= 3.2.1.0) + rubocop-performance (1.18.0) + rubocop (>= 1.7.0, < 2.0) + rubocop-ast (>= 0.4.0) + rubocop-rails (2.20.1) + activesupport (>= 4.2.0) + rack (>= 1.1) + rubocop (>= 1.33.0, < 2.0) + ruby-progressbar (1.13.0) rubyzip (2.3.2) selenium-webdriver (4.6.1) childprocess (>= 0.5, < 5.0) @@ -198,6 +238,9 @@ GEM railties (>= 6.0.0) tzinfo (2.0.5) concurrent-ruby (~> 1.0) + unicode-display_width (2.4.2) + warden (1.2.9) + rack (>= 2.0.9) web-console (4.2.0) actionview (>= 6.0.0) activemodel (>= 6.0.0) @@ -216,6 +259,7 @@ GEM zeitwerk (2.6.6) PLATFORMS + aarch64-linux x86_64-linux DEPENDENCIES @@ -223,6 +267,7 @@ DEPENDENCIES capybara cssbundling-rails debug + devise jbuilder jsbundling-rails pg (~> 1.1) @@ -230,6 +275,9 @@ DEPENDENCIES rack-mini-profiler rails (~> 7.0.4) redis (~> 5.0) + rubocop + rubocop-performance + rubocop-rails selenium-webdriver sidekiq (~> 7.0) sprockets-rails diff --git a/app/controllers/expenses_controller.rb b/app/controllers/expenses_controller.rb new file mode 100644 index 00000000..5bb03065 --- /dev/null +++ b/app/controllers/expenses_controller.rb @@ -0,0 +1,40 @@ +class ExpensesController < ApplicationController + before_action :set_group_and_users, only: [:show, :edit, :update] + before_action :set_expense, only: [:edit, :update] + + def show + @difference = Expense.new.split_expenses(@users) + end + + def edit + end + + def update + @users.each do |user| + expense = user.expense + amount = params["group"]["group_user_#{user.id}_expenses"].to_i + if expense + expense.update(amount: amount) + else + Expense.create(user_id: user.id, group_id: @group.id, amount: amount) + end + end + + redirect_to group_expense_path(@group) + end + + private + + def set_group_and_users + @group = Group.find(params[:group_id]) + @users = @group.users + end + + def set_expense + @expense = @group.expenses.find_by(user_id: @users.pluck(:id)) + end + + def expense_params + params.require(:expense).permit(:amount, :group_id, :user_id) + end +end diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb new file mode 100644 index 00000000..6ad9fce2 --- /dev/null +++ b/app/controllers/groups_controller.rb @@ -0,0 +1,60 @@ +class GroupsController < ApplicationController + before_action :set_group, only: %i[show edit update] + + def index + @groups = Group.all + @user = User.find(current_user.id) + end + + def new + @group = Group.new + @user_list = @group.users.pluck(:id).join(',') + end + + def create + @group = Group.new(group_params) + if @group.save + user_list = user_params[:user_lists].delete(' ').split(',') + + @group.save_user(user_list) + redirect_to group_path(@group) + else + render :new + end + end + + def show + @group = Group.find(params[:id]) + @user = User.find(current_user.id) if current_user + end + + def edit + @group = Group.find(params[:id]) + @user_list = @group.users.pluck(:name).join(',') + end + + def update + @group = Group.find(params[:id]) + @user_list = user_params[:user_lists].delete(' ') + if @group.update(group_params) + @group.save_user(@user_list.split(',')) + redirect_to group_path(@group) + else + render :edit + end + end + + private + + def set_group + @group = Group.find(params[:id]) + end + + def group_params + params.require(:group).permit(:name) + end + + def user_params + params.require(:group).permit(:user_lists) + end +end diff --git a/app/controllers/pages_controller.rb b/app/controllers/pages_controller.rb index 45f463e4..2f5a6000 100644 --- a/app/controllers/pages_controller.rb +++ b/app/controllers/pages_controller.rb @@ -1,4 +1,3 @@ class PagesController < ApplicationController - def home - end + def home; end end diff --git a/app/controllers/up_controller.rb b/app/controllers/up_controller.rb index 8416becf..f9f9e796 100644 --- a/app/controllers/up_controller.rb +++ b/app/controllers/up_controller.rb @@ -5,7 +5,7 @@ def index def databases RedisConn.current.ping - ActiveRecord::Base.connection.execute("SELECT 1") + ActiveRecord::Base.connection.execute('SELECT 1') head :ok end diff --git a/app/controllers/user/confirmations_controller.rb b/app/controllers/user/confirmations_controller.rb new file mode 100644 index 00000000..e37cc10c --- /dev/null +++ b/app/controllers/user/confirmations_controller.rb @@ -0,0 +1,30 @@ +# frozen_string_literal: true + +class User::ConfirmationsController < Devise::ConfirmationsController + # GET /resource/confirmation/new + # def new + # super + # end + + # POST /resource/confirmation + # def create + # super + # end + + # GET /resource/confirmation?confirmation_token=abcdef + # def show + # super + # end + + # protected + + # The path used after resending confirmation instructions. + # def after_resending_confirmation_instructions_path_for(resource_name) + # super(resource_name) + # end + + # The path used after confirmation. + # def after_confirmation_path_for(resource_name, resource) + # super(resource_name, resource) + # end +end diff --git a/app/controllers/user/omniauth_callbacks_controller.rb b/app/controllers/user/omniauth_callbacks_controller.rb new file mode 100644 index 00000000..21aad21f --- /dev/null +++ b/app/controllers/user/omniauth_callbacks_controller.rb @@ -0,0 +1,30 @@ +# frozen_string_literal: true + +class User::OmniauthCallbacksController < Devise::OmniauthCallbacksController + # You should configure your model like this: + # devise :omniauthable, omniauth_providers: [:twitter] + + # You should also create an action method in this controller like this: + # def twitter + # end + + # More info at: + # https://github.com/heartcombo/devise#omniauth + + # GET|POST /resource/auth/twitter + # def passthru + # super + # end + + # GET|POST /users/auth/twitter/callback + # def failure + # super + # end + + # protected + + # The path used when OmniAuth fails + # def after_omniauth_failure_path_for(scope) + # super(scope) + # end +end diff --git a/app/controllers/user/passwords_controller.rb b/app/controllers/user/passwords_controller.rb new file mode 100644 index 00000000..5951f5b3 --- /dev/null +++ b/app/controllers/user/passwords_controller.rb @@ -0,0 +1,34 @@ +# frozen_string_literal: true + +class User::PasswordsController < Devise::PasswordsController + # GET /resource/password/new + # def new + # super + # end + + # POST /resource/password + # def create + # super + # end + + # GET /resource/password/edit?reset_password_token=abcdef + # def edit + # super + # end + + # PUT /resource/password + # def update + # super + # end + + # protected + + # def after_resetting_password_path_for(resource) + # super(resource) + # end + + # The path used after sending reset password instructions + # def after_sending_reset_password_instructions_path_for(resource_name) + # super(resource_name) + # end +end diff --git a/app/controllers/user/registrations_controller.rb b/app/controllers/user/registrations_controller.rb new file mode 100644 index 00000000..cc1670f4 --- /dev/null +++ b/app/controllers/user/registrations_controller.rb @@ -0,0 +1,62 @@ +# frozen_string_literal: true + +class User::RegistrationsController < Devise::RegistrationsController + before_action :configure_sign_up_params, only: [:create] + before_action :configure_account_update_params, only: [:update] + + # GET /resource/sign_up + # def new + # super + # end + + # POST /resource + # def create + # super + # end + + # GET /resource/edit + # def edit + # super + # end + + # PUT /resource + # def update + # super + # end + + # DELETE /resource + # def destroy + # super + # end + + # GET /resource/cancel + # Forces the session data which is usually expired after sign + # in to be expired now. This is useful if the user wants to + # cancel oauth signing in/up in the middle of the process, + # removing all OAuth session data. + # def cancel + # super + # end + + # protected + + # If you have extra params to permit, append them to the sanitizer. + def configure_sign_up_params + devise_parameter_sanitizer.permit(:sign_up, keys: [:name]) + end + + # If you have extra params to permit, append them to the sanitizer. + def configure_account_update_params + devise_parameter_sanitizer.permit(:account_update, keys: [:name]) + end + + # The path used after sign up. + # def after_sign_up_path_for(resource) + # super(resource) + # end + + # The path used after sign up for inactive accounts. + # def after_inactive_sign_up_path_for(resource) + # super(resource) + # end +end diff --git a/app/controllers/user/sessions_controller.rb b/app/controllers/user/sessions_controller.rb new file mode 100644 index 00000000..be4b5692 --- /dev/null +++ b/app/controllers/user/sessions_controller.rb @@ -0,0 +1,27 @@ +# frozen_string_literal: true + +class User::SessionsController < Devise::SessionsController + # before_action :configure_sign_in_params, only: [:create] + + # GET /resource/sign_in + # def new + # super + # end + + # POST /resource/sign_in + # def create + # super + # end + + # DELETE /resource/sign_out + # def destroy + # super + # end + + # protected + + # If you have extra params to permit, append them to the sanitizer. + # def configure_sign_in_params + # devise_parameter_sanitizer.permit(:sign_in, keys: [:attribute]) + # end +end diff --git a/app/controllers/user/unlocks_controller.rb b/app/controllers/user/unlocks_controller.rb new file mode 100644 index 00000000..05191c4e --- /dev/null +++ b/app/controllers/user/unlocks_controller.rb @@ -0,0 +1,30 @@ +# frozen_string_literal: true + +class User::UnlocksController < Devise::UnlocksController + # GET /resource/unlock/new + # def new + # super + # end + + # POST /resource/unlock + # def create + # super + # end + + # GET /resource/unlock?unlock_token=abcdef + # def show + # super + # end + + # protected + + # The path used after sending unlock password instructions + # def after_sending_unlock_instructions_path_for(resource) + # super(resource) + # end + + # The path used after unlocking the resource + # def after_unlock_path_for(resource) + # super(resource) + # end +end diff --git a/app/mailers/application_mailer.rb b/app/mailers/application_mailer.rb index 3c34c814..286b2239 100644 --- a/app/mailers/application_mailer.rb +++ b/app/mailers/application_mailer.rb @@ -1,4 +1,4 @@ class ApplicationMailer < ActionMailer::Base - default from: "from@example.com" - layout "mailer" + default from: 'from@example.com' + layout 'mailer' end diff --git a/app/models/expense.rb b/app/models/expense.rb new file mode 100644 index 00000000..3f5c65e3 --- /dev/null +++ b/app/models/expense.rb @@ -0,0 +1,18 @@ +class Expense < ApplicationRecord + belongs_to :user + belongs_to :group + + def split_expenses(users) + total_amount = users.sum { |user| user.expense&.amount.to_i } + num_users = users.size + per_person_amount = total_amount / num_users + + differences = users.map do |user| + paid_amount = user.expense&.amount.to_i + difference = per_person_amount - paid_amount + { user: user, difference: difference } + end + + return differences + end +end diff --git a/app/models/group.rb b/app/models/group.rb new file mode 100644 index 00000000..2e86e3d0 --- /dev/null +++ b/app/models/group.rb @@ -0,0 +1,26 @@ +class Group < ApplicationRecord + with_options presence: true do + validates :name + end + has_many :group_members, dependent: :destroy + has_many :users, through: :group_members + + has_many :expenses, dependent: :destroy + + def save_user(sent_users) + # 送られてきたユーザー名を元に、Userモデルからユーザーを検索し、存在するユーザーのみを抽出 + exist_new_users = sent_users.map do |sent_user| + User.find_by(name: sent_user) + end.compact + + current_users = users.pluck(:id) + old_users = current_users - exist_new_users.map(&:id) + new_users = exist_new_users - users + + # 古いユーザーを削除 + group_members.where(user_id: old_users).destroy_all + + # 新しいユーザーを追加 + users << new_users + end +end diff --git a/app/models/group_member.rb b/app/models/group_member.rb new file mode 100644 index 00000000..5bdf6dc0 --- /dev/null +++ b/app/models/group_member.rb @@ -0,0 +1,4 @@ +class GroupMember < ApplicationRecord + belongs_to :user + belongs_to :group +end diff --git a/app/models/user.rb b/app/models/user.rb new file mode 100644 index 00000000..1dbeb2fe --- /dev/null +++ b/app/models/user.rb @@ -0,0 +1,12 @@ +class User < ApplicationRecord + # Include default devise modules. Others available are: + # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable + devise :database_authenticatable, :registerable, + :recoverable, :rememberable, :validatable + with_options presence: true do + validates :name + end + has_many :group_members, dependent: :destroy + has_many :groups, through: :group_members + has_one :expense, dependent: :destroy +end diff --git a/app/views/expenses/edit.html.erb b/app/views/expenses/edit.html.erb new file mode 100644 index 00000000..3bf2b518 --- /dev/null +++ b/app/views/expenses/edit.html.erb @@ -0,0 +1,31 @@ +
+ + Edit Amount + +
+ +
+
+ <%= form_with(model: @group, url: group_expense_path(@group), local: true, class: "w-full") do |form| %> + <%= render "user/shared/error_messages", resource: @group %> + +
+ <%= form.label :name, "Name", class: "mb-2 block text-sm text-gray-600" %> + + <%= @group.name %> + +
+ +
+ <%= form.label :user_lists, "Member", class: "mb-2 block text-sm text-gray-600" %> + <% @users.each do |user| %> + <%= form.label "group_user_#{user.id}_expenses", user.name %> + <%= form.number_field "group_user_#{user.id}_expenses", value: user.expense&.amount || 0 %> + 円
+ <% end %> +
+ + <%= form.submit 'Update Expense', class: "inline-flex w-full items-center justify-center rounded-md bg-blue-500 p-3 text-white duration-100 ease-in-out hover:bg-blue-600 focus:outline-none cursor-pointer" %> + <% end %> +
+
diff --git a/app/views/expenses/show.html.erb b/app/views/expenses/show.html.erb new file mode 100644 index 00000000..9380a2dd --- /dev/null +++ b/app/views/expenses/show.html.erb @@ -0,0 +1,42 @@ +
+ + Show Amount + +
+ +
+
+ <%= render "user/shared/error_messages", resource: @group %> +
+ <%= label_tag :name, "Name", class: "mb-2 block text-sm text-gray-600" %> + + <%= @group.name %> + +
+ +
+ <%= label_tag :user_lists, "Member", class: "mb-2 block text-sm text-gray-600" %> + + <% @users.each do |user| %> + <%= user.name %> + <% if user.expense %> + <%= user.expense.amount %> 円
+ <% else %> + 0 円
+ <% end %> + <% end %> +
+
+ +
+ <%= label_tag :differences, "differences", class: "mb-2 block text-sm text-gray-600" %> +
    + <% @difference.each do |hash| %> +
  • <%= hash[:user].name %> <%= hash[:difference] %> 円
  • + <% end %> +
+
+ + <%= link_to "Edit", edit_group_expense_path(@group), class: "inline-flex w-full items-center justify-center rounded-md bg-blue-500 p-3 text-white duration-100 ease-in-out hover:bg-blue-600 focus:outline-none cursor-pointer" %> +
+
diff --git a/app/views/groups/edit.html.erb b/app/views/groups/edit.html.erb new file mode 100644 index 00000000..fda6b331 --- /dev/null +++ b/app/views/groups/edit.html.erb @@ -0,0 +1,38 @@ +
+ + Edit Group + +
+ +
+ <%= form_with model: @group, url: group_path(@group), local: true, class: "xl:w-8/12 md:w-10/12", data: { turbo: false } do |f| %> + <%= render "user/shared/error_messages", resource: @group %> +
+ <%= f.label :name, class: "mb-2 block text-sm text-gray-600" %> + <%= f.text_field :name, class: "w-full rounded-md border border-gray-300 py-2 px-3 placeholder:text-gray-300 focus:border-indigo-300 focus:outline-none focus:ring focus:ring-indigo-100" %> +
+ +
+ <%= f.label :user_lists, "Member", class: "mb-2 block text-sm text-gray-600" %> + <% member_names = @group.users.map(&:name).join(', ') %> + <%= f.text_field :user_lists, class: "w-full rounded-md border border-gray-300 py-2 px-3 placeholder:text-gray-300 focus:border-indigo-300 focus:outline-none focus:ring focus:ring-indigo-100", placeholder: ',で区切ってください', value: member_names %> +
+ + +
+ <%= label_tag :created_at, "Created At", class: "mb-2 block text-sm text-gray-600" %> + + <%= l @group.created_at.in_time_zone('Tokyo'), format: "%Y年%-m月%-d日 %H:%M" %> + +
+ +
+ <%= label_tag :updated_at, "Updated At", class: "mb-2 block text-sm text-gray-600" %> + + <%= l @group.updated_at.in_time_zone('Tokyo'), format: "%Y年%-m月%-d日 %H:%M" %> + +
+ + <%= f.submit class: "inline-flex w-full items-center justify-center rounded-md bg-indigo-500 p-3 text-white duration-100 ease-in-out hover:bg-indigo-600 focus:outline-none cursor-pointer" %> + <% end %> +
diff --git a/app/views/groups/index.html.erb b/app/views/groups/index.html.erb new file mode 100644 index 00000000..47f671da --- /dev/null +++ b/app/views/groups/index.html.erb @@ -0,0 +1,63 @@ +
+ + Groups + +
+ +
+
+ <%= link_to new_group_path, class: "mb-4 inline-flex items-center justify-center rounded-md bg-indigo-500 p-3 text-white duration-100 ease-in-out hover:bg-indigo-600 focus:outline-none" do %> + Add New Group + <% end %> +
+
+
+ + + + + + + + + + + + <% @groups.each do |group| %> + + + + + + + + <% end %> + +
NameMemberCreatedAtUpdatedAt
+ <%= link_to group_path(group) do %> +
+
+
<%= group.name %>
+
+
+ <% end %> +
+ + <% group.users.each do |user| %> + <%= user.name %> + <% end %> + + + <%= l group.created_at.in_time_zone('Tokyo'), format: "%Y年%-m月%-d日 %H:%M" %> + + <%= l group.updated_at.in_time_zone('Tokyo'), format: "%Y年%-m月%-d日 %H:%M" %> + + <%= link_to edit_group_path(group), class: "font-semibold leading-tight text-xs text-slate-400" do %> + Edit + <% end %> +
+
+
+
+
+
\ No newline at end of file diff --git a/app/views/groups/new.html.erb b/app/views/groups/new.html.erb new file mode 100644 index 00000000..7aeba300 --- /dev/null +++ b/app/views/groups/new.html.erb @@ -0,0 +1,20 @@ +
+ + New Group + +
+ +
+ <%= form_with model: @group, url: groups_path, local: true, class: "xl:w-8/12 md:w-10/12", data: { turbo: false } do |f| %> + <%= render "user/shared/error_messages", resource: @group %> +
+ <%= f.label :name, class: "mb-2 block text-sm text-gray-600" %> + <%= f.text_field :name, class: "w-full rounded-md border border-gray-300 py-2 px-3 placeholder:text-gray-300 focus:border-indigo-300 focus:outline-none focus:ring focus:ring-indigo-100" %> +
+
+ <%= f.label :user_lists, class: "mb-2 block text-sm text-gray-600" %> + <%= f.text_field :user_lists, class: "w-full rounded-md border border-gray-300 py-2 px-3 placeholder:text-gray-300 focus:border-indigo-300 focus:outline-none focus:ring focus:ring-indigo-100", placeholder: ',で区切ってください', value: @user_list %> +
+ <%= f.submit class: "inline-flex w-full items-center justify-center rounded-md bg-indigo-500 p-3 text-white duration-100 ease-in-out hover:bg-indigo-600 focus:outline-none cursor-pointer" %> + <% end %> +
\ No newline at end of file diff --git a/app/views/groups/show.html.erb b/app/views/groups/show.html.erb new file mode 100644 index 00000000..e309155b --- /dev/null +++ b/app/views/groups/show.html.erb @@ -0,0 +1,43 @@ +
+ + Show Group + +
+ +
+ <%= form_with model: @group, url: group_path(@group), local: true, class: "xl:w-8/12 md:w-10/12", data: { turbo: false }, readonly: true do |f| %> + <%= render "user/shared/error_messages", resource: @group %> +
+ <%= label_tag :name, "Name", class: "mb-2 block text-sm text-gray-600" %> + + <%= @group.name %> + +
+ +
+ <%= label_tag :user_lists, "Member", class: "mb-2 block text-sm text-gray-600" %> + + <% @group.users.each do |user| %> + <%= user.name %> + <% end %> + +
+ +
+ <%= label_tag :created_at, "Created At", class: "mb-2 block text-sm text-gray-600" %> + + <%= l @group.created_at.in_time_zone('Tokyo'), format: "%Y年%-m月%-d日 %H:%M" %> + +
+ +
+ <%= label_tag :updated_at, "Updated At", class: "mb-2 block text-sm text-gray-600" %> + + <%= l @group.updated_at.in_time_zone('Tokyo'), format: "%Y年%-m月%-d日 %H:%M" %> + +
+ + <%= link_to "Edit Group", edit_group_path(@group), class: "inline-flex w-full items-center justify-center rounded-md bg-indigo-500 p-3 text-white duration-100 ease-in-out hover:bg-indigo-600 focus:outline-none cursor-pointer mb-2" %> + <%= link_to "Show Amount", group_expense_path(@group), class: "inline-flex w-full items-center justify-center rounded-md bg-blue-500 p-3 text-white duration-100 ease-in-out hover:bg-blue-600 focus:outline-none cursor-pointer" %> + <% end %> +
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index f86a39fc..d19c09d5 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -1,7 +1,7 @@ - Docker + Rails + Warikan <%= csrf_meta_tags %> <%= csp_meta_tag %> @@ -23,36 +23,95 @@ -
-
-
-
- - - -

- Rails <%= Rails::VERSION::STRING %> and Ruby <%= ENV["RUBY_VERSION"] %> -

+
+
+
+
+ <%= link_to root_path, class: "text-2xl text-gray-900 no-underline hover:text-gray-900 hover:no-underline" do %> + 💰   Warikan + <% end %>
-
-
- - RAILS_ENV = <%= Rails.env %> - -
+
+
    + <% if user_signed_in? %> +
  • + <%= link_to groups_path do %> + + + + <% end %> +
  • +
  • +
    + +
    +
  • + <% else %> +
  • + <%= link_to "Sign Up", new_user_registration_path %> +
  • +
  • + <%= link_to "Sign In", new_user_session_path %> +
  • + <% end %> +
-
+ <% if flash[:notice] %> +
+ <%= notice %> +
+ <% end %> + <% if flash[:alert] %> +
+ <%= alert %> +
+ <% end %> + +
<%= yield %>
+ +

- Coded with by Nick Janetakis + This is a production ready example Rails app that's using Docker and Docker Compose.

- + \ No newline at end of file diff --git a/app/views/pages/home.html.erb b/app/views/pages/home.html.erb index 398d612e..eb34e4ba 100644 --- a/app/views/pages/home.html.erb +++ b/app/views/pages/home.html.erb @@ -1,10 +1,12 @@ -
- <%= image_tag "ruby-on-rails.png", size: "480x188", alt: "Rails logo" %> -
- -

- 🐳 Learn the Docker fundamentals at: - - https://diveintodocker.com - -

+
+
+

+ + Warikan + +

+
+

グループでの支払いを楽しく、簡単に

+
+
+
\ No newline at end of file diff --git a/app/views/user/confirmations/new.html.erb b/app/views/user/confirmations/new.html.erb new file mode 100644 index 00000000..64b585be --- /dev/null +++ b/app/views/user/confirmations/new.html.erb @@ -0,0 +1,16 @@ +

Resend confirmation instructions

+ +<%= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f| %> + <%= render "user/shared/error_messages", resource: resource %> + +
+ <%= f.label :email %>
+ <%= f.email_field :email, autofocus: true, autocomplete: "email", value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email) %> +
+ +
+ <%= f.submit "Resend confirmation instructions" %> +
+<% end %> + +<%= render "user/shared/links" %> diff --git a/app/views/user/mailer/confirmation_instructions.html.erb b/app/views/user/mailer/confirmation_instructions.html.erb new file mode 100644 index 00000000..dc55f64f --- /dev/null +++ b/app/views/user/mailer/confirmation_instructions.html.erb @@ -0,0 +1,5 @@ +

Welcome <%= @email %>!

+ +

You can confirm your account email through the link below:

+ +

<%= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @token) %>

diff --git a/app/views/user/mailer/email_changed.html.erb b/app/views/user/mailer/email_changed.html.erb new file mode 100644 index 00000000..32f4ba80 --- /dev/null +++ b/app/views/user/mailer/email_changed.html.erb @@ -0,0 +1,7 @@ +

Hello <%= @email %>!

+ +<% if @resource.try(:unconfirmed_email?) %> +

We're contacting you to notify you that your email is being changed to <%= @resource.unconfirmed_email %>.

+<% else %> +

We're contacting you to notify you that your email has been changed to <%= @resource.email %>.

+<% end %> diff --git a/app/views/user/mailer/password_change.html.erb b/app/views/user/mailer/password_change.html.erb new file mode 100644 index 00000000..b41daf47 --- /dev/null +++ b/app/views/user/mailer/password_change.html.erb @@ -0,0 +1,3 @@ +

Hello <%= @resource.email %>!

+ +

We're contacting you to notify you that your password has been changed.

diff --git a/app/views/user/mailer/reset_password_instructions.html.erb b/app/views/user/mailer/reset_password_instructions.html.erb new file mode 100644 index 00000000..f667dc12 --- /dev/null +++ b/app/views/user/mailer/reset_password_instructions.html.erb @@ -0,0 +1,8 @@ +

Hello <%= @resource.email %>!

+ +

Someone has requested a link to change your password. You can do this through the link below.

+ +

<%= link_to 'Change my password', edit_password_url(@resource, reset_password_token: @token) %>

+ +

If you didn't request this, please ignore this email.

+

Your password won't change until you access the link above and create a new one.

diff --git a/app/views/user/mailer/unlock_instructions.html.erb b/app/views/user/mailer/unlock_instructions.html.erb new file mode 100644 index 00000000..41e148bf --- /dev/null +++ b/app/views/user/mailer/unlock_instructions.html.erb @@ -0,0 +1,7 @@ +

Hello <%= @resource.email %>!

+ +

Your account has been locked due to an excessive number of unsuccessful sign in attempts.

+ +

Click the link below to unlock your account:

+ +

<%= link_to 'Unlock my account', unlock_url(@resource, unlock_token: @token) %>

diff --git a/app/views/user/passwords/edit.html.erb b/app/views/user/passwords/edit.html.erb new file mode 100644 index 00000000..6d57fa6b --- /dev/null +++ b/app/views/user/passwords/edit.html.erb @@ -0,0 +1,25 @@ +

Change your password

+ +<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| %> + <%= render "user/shared/error_messages", resource: resource %> + <%= f.hidden_field :reset_password_token %> + +
+ <%= f.label :password, "New password" %>
+ <% if @minimum_password_length %> + (<%= @minimum_password_length %> characters minimum)
+ <% end %> + <%= f.password_field :password, autofocus: true, autocomplete: "new-password" %> +
+ +
+ <%= f.label :password_confirmation, "Confirm new password" %>
+ <%= f.password_field :password_confirmation, autocomplete: "new-password" %> +
+ +
+ <%= f.submit "Change my password" %> +
+<% end %> + +<%= render "user/shared/links" %> diff --git a/app/views/user/passwords/new.html.erb b/app/views/user/passwords/new.html.erb new file mode 100644 index 00000000..bc76c317 --- /dev/null +++ b/app/views/user/passwords/new.html.erb @@ -0,0 +1,16 @@ +

Forgot your password?

+ +<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f| %> + <%= render "user/shared/error_messages", resource: resource %> + +
+ <%= f.label :email %>
+ <%= f.email_field :email, autofocus: true, autocomplete: "email" %> +
+ +
+ <%= f.submit "Send me reset password instructions" %> +
+<% end %> + +<%= render "user/shared/links" %> diff --git a/app/views/user/registrations/edit.html.erb b/app/views/user/registrations/edit.html.erb new file mode 100644 index 00000000..153ac6ba --- /dev/null +++ b/app/views/user/registrations/edit.html.erb @@ -0,0 +1,45 @@ +
+ + Edit Profile + +
+ +
+ <%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put, class: "w-11/12 md:w-10/12 xl:w-8/12" }, data: { turbo: false }) do |f| %> + + <%= render "user/shared/error_messages", resource: resource %> + + <% if devise_mapping.confirmable? && resource.pending_reconfirmation? %> +
Currently waiting confirmation for: <%= resource.unconfirmed_email %>
+ <% end %> + +
+ <%= f.label :name, class: "mb-2 block text-sm text-gray-600" %> + <%= f.text_field :name, class: "w-full rounded-md border border-gray-300 py-2 px-3 placeholder:text-gray-300 focus:border-indigo-300 focus:outline-none focus:ring focus:ring-indigo-100" %> +
+ +
+ <%= f.label :email, class: "mb-2 block text-sm text-gray-600" %> + <%= f.email_field :email, class: "w-full rounded-md border border-gray-300 py-2 px-3 placeholder:text-gray-300 focus:border-indigo-300 focus:outline-none focus:ring focus:ring-indigo-100" %> +
+ +
+ <%= f.label :password, "password", class: "mb-2 block text-sm text-gray-600" %> + <%= f.password_field :password, class: "w-full rounded-md border border-gray-300 py-2 px-3 placeholder:text-gray-300 focus:border-indigo-300 focus:outline-none focus:ring focus:ring-indigo-100" %> +
+ +
+ <%= f.label :password_confirmation, class: "mb-2 block text-sm text-gray-600" %> + <%= f.password_field :password_confirmation, class: "w-full rounded-md border border-gray-300 py-2 px-3 placeholder:text-gray-300 focus:border-indigo-300 focus:outline-none focus:ring focus:ring-indigo-100" %> +
+ +
+ <%= f.label :current_password, class: "mb-2 block text-sm text-gray-600" %> + <%= f.password_field :current_password, class: "w-full rounded-md border border-gray-300 py-2 px-3 placeholder:text-gray-300 focus:border-indigo-300 focus:outline-none focus:ring focus:ring-indigo-100" %> +
+ +
+ <%= f.submit "Update Profile", class: "inline-flex w-full items-center justify-center rounded-md bg-indigo-500 p-3 text-white duration-100 ease-in-out hover:bg-indigo-600 focus:outline-none" %> +
+ <% end %> +
\ No newline at end of file diff --git a/app/views/user/registrations/new.html.erb b/app/views/user/registrations/new.html.erb new file mode 100644 index 00000000..e4808fc5 --- /dev/null +++ b/app/views/user/registrations/new.html.erb @@ -0,0 +1,37 @@ +
+ + Sign Up + +
+ +
+ <%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { class: "w-11/12 md:w-10/12 xl:w-8/12" }, data: { turbo: false } ) do |f| %> + <%= render "user/shared/error_messages", resource: resource %> + +
+ <%= f.label :name, class: "mb-2 block text-sm text-gray-600" %> + <%= f.text_field :name, class: "w-full rounded-md border border-gray-300 py-2 px-3 placeholder:text-gray-300 focus:border-indigo-300 focus:outline-none focus:ring focus:ring-indigo-100" %> +
+ +
+ <%= f.label :email, class: "mb-2 block text-sm text-gray-600" %> + <%= f.email_field :email, class: "w-full rounded-md border border-gray-300 py-2 px-3 placeholder:text-gray-300 focus:border-indigo-300 focus:outline-none focus:ring focus:ring-indigo-100" %> +
+ +
+ <%= f.label :password, "password", class: "mb-2 block text-sm text-gray-600" %> + <%= f.password_field :password, class: "w-full rounded-md border border-gray-300 py-2 px-3 placeholder:text-gray-300 focus:border-indigo-300 focus:outline-none focus:ring focus:ring-indigo-100" %> +
+ +
+ <%= f.label :password_confirmation, class: "mb-2 block text-sm text-gray-600" %> + <%= f.password_field :password_confirmation, class: "w-full rounded-md border border-gray-300 py-2 px-3 placeholder:text-gray-300 focus:border-indigo-300 focus:outline-none focus:ring focus:ring-indigo-100" %> +
+ + <%= f.submit 'Sign Up', class: "inline-flex w-full items-center justify-center rounded-md bg-indigo-500 p-3 text-white duration-100 ease-in-out hover:bg-indigo-600 focus:outline-none cursor-pointer" %> + <% end %> +
+ +
+ <%= render "user/shared/links" %> +
\ No newline at end of file diff --git a/app/views/user/sessions/new.html.erb b/app/views/user/sessions/new.html.erb new file mode 100644 index 00000000..cf738e34 --- /dev/null +++ b/app/views/user/sessions/new.html.erb @@ -0,0 +1,24 @@ +
+ + Sign In + +
+ +
+ <%= form_for(resource, as: resource_name, url: session_path(resource_name), html: { class: "w-11/12 md:w-10/12 xl:w-8/12" }, data: { turbo: false } ) do |f| %> + <%= render "user/shared/error_messages", resource: resource %> +
+ <%= f.label :email, class: "mb-2 block text-sm text-gray-600" %> + <%= f.email_field :email, class: "w-full rounded-md border border-gray-300 py-2 px-3 placeholder:text-gray-300 focus:border-indigo-300 focus:outline-none focus:ring focus:ring-indigo-100" %> +
+
+ <%= f.label :password, class: "mb-2 block text-sm text-gray-600" %> + <%= f.password_field :password, class: "w-full rounded-md border border-gray-300 py-2 px-3 placeholder:text-gray-300 focus:border-indigo-300 focus:outline-none focus:ring focus:ring-indigo-100" %> +
+ <%= f.submit 'Sign In', class: "inline-flex w-full items-center justify-center rounded-md bg-indigo-500 p-3 text-white duration-100 ease-in-out hover:bg-indigo-600 focus:outline-none cursor-pointer" %> + <% end %> +
+ +
+ <%= render "user/shared/links" %> +
\ No newline at end of file diff --git a/app/views/user/shared/_error_messages.html.erb b/app/views/user/shared/_error_messages.html.erb new file mode 100644 index 00000000..4cf283a2 --- /dev/null +++ b/app/views/user/shared/_error_messages.html.erb @@ -0,0 +1,15 @@ +<% if resource.errors.any? %> + +<% end %> \ No newline at end of file diff --git a/app/views/user/shared/_links.html.erb b/app/views/user/shared/_links.html.erb new file mode 100644 index 00000000..79e2cd50 --- /dev/null +++ b/app/views/user/shared/_links.html.erb @@ -0,0 +1,21 @@ +<%- if controller_name != 'sessions' %> + <%= link_to "Log in", new_session_path(resource_name) %>
+<% end %> + +<%- if devise_mapping.registerable? && controller_name != 'registrations' %> + <%= link_to "Sign up", new_registration_path(resource_name) %>
+<% end %> + +<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %> + <%= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name) %>
+<% end %> + +<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %> + <%= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name) %>
+<% end %> + +<%- if devise_mapping.omniauthable? %> + <%- resource_class.omniauth_providers.each do |provider| %> + <%= button_to "Sign in with #{OmniAuth::Utils.camelize(provider)}", omniauth_authorize_path(resource_name, provider), data: { turbo: false } %>
+ <% end %> +<% end %> diff --git a/app/views/user/unlocks/new.html.erb b/app/views/user/unlocks/new.html.erb new file mode 100644 index 00000000..56aab6e9 --- /dev/null +++ b/app/views/user/unlocks/new.html.erb @@ -0,0 +1,16 @@ +

Resend unlock instructions

+ +<%= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %> + <%= render "user/shared/error_messages", resource: resource %> + +
+ <%= f.label :email %>
+ <%= f.email_field :email, autofocus: true, autocomplete: "email" %> +
+ +
+ <%= f.submit "Resend unlock instructions" %> +
+<% end %> + +<%= render "user/shared/links" %> diff --git a/cable/config.ru b/cable/config.ru index 335cda22..338dff91 100644 --- a/cable/config.ru +++ b/cable/config.ru @@ -1,6 +1,6 @@ # This file is used to start the Action Cable server. -require_relative "../config/environment" +require_relative '../config/environment' Rails.application.eager_load! run ActionCable.server diff --git a/config.ru b/config.ru index 4a3c09a6..ad1fbf29 100644 --- a/config.ru +++ b/config.ru @@ -1,6 +1,6 @@ # This file is used by Rack-based servers to start the application. -require_relative "config/environment" +require_relative 'config/environment' run Rails.application Rails.application.load_server diff --git a/config/application.rb b/config/application.rb index f625f0a4..8f0f91a9 100644 --- a/config/application.rb +++ b/config/application.rb @@ -1,6 +1,6 @@ -require_relative "boot" +require_relative 'boot' -require "rails/all" +require 'rails/all' # Require the gems listed in Gemfile, including any gems # you've limited to :test, :development, or :production. @@ -13,14 +13,14 @@ class Application < Rails::Application # Log to STDOUT because Docker expects all processes to log here. You could # then collect logs using journald, syslog or forward them somewhere else. - logger = ActiveSupport::Logger.new(STDOUT) + logger = ActiveSupport::Logger.new($stdout) logger.formatter = config.log_formatter config.logger = ActiveSupport::TaggedLogging.new(logger) # Set Redis as the back-end for the cache. config.cache_store = :redis_cache_store, { - url: ENV.fetch("REDIS_URL") { "redis://redis:6379/1" }, - namespace: "cache" + url: ENV.fetch('REDIS_URL') { 'redis://redis:6379/1' }, + namespace: 'cache' } # Set Sidekiq as the back-end for Active Job. @@ -28,11 +28,18 @@ class Application < Rails::Application # Mount Action Cable outside the main process or domain. config.action_cable.mount_path = nil - config.action_cable.url = ENV.fetch("ACTION_CABLE_FRONTEND_URL") { "ws://localhost:28080" } + config.action_cable.url = ENV.fetch('ACTION_CABLE_FRONTEND_URL') { 'ws://localhost:28080' } # Only allow connections to Action Cable from these domains. - origins = ENV.fetch("ACTION_CABLE_ALLOWED_REQUEST_ORIGINS") { "http:\/\/localhost*" }.split(",") + origins = ENV.fetch('ACTION_CABLE_ALLOWED_REQUEST_ORIGINS') { "http:\/\/localhost*" }.split(',') origins.map! { |url| /#{url}/ } config.action_cable.allowed_request_origins = origins + + # Customizing Rails Generators + config.generators do |g| + g.assets false + g.skip_routes true + g.test_framework false + end end end diff --git a/config/boot.rb b/config/boot.rb index 4786697d..f4d9a88c 100644 --- a/config/boot.rb +++ b/config/boot.rb @@ -1,7 +1,7 @@ -ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) # Set up gems listed in the Gemfile. -require "bundler/setup" +require 'bundler/setup' # Speed up boot time by caching expensive operations, but not in production. -require "bootsnap/setup" if Gem.loaded_specs.has_key?("bootsnap") +require 'bootsnap/setup' if Gem.loaded_specs.key?('bootsnap') diff --git a/config/database.yml b/config/database.yml index 9d643d0e..52c832bc 100644 --- a/config/database.yml +++ b/config/database.yml @@ -1,7 +1,7 @@ default: &default adapter: "postgresql" encoding: "unicode" - database: "<%= ENV.fetch("POSTGRES_DB") { "hello" } %>" + database: "<%= ENV.fetch("POSTGRES_DB") { "warikan" } %>" username: "<%= ENV.fetch("POSTGRES_USER") { "hello" } %>" password: "<%= ENV.fetch("POSTGRES_PASSWORD") { "password" } %>" host: "<%= ENV.fetch("POSTGRES_HOST") { "postgres" } %>" @@ -11,12 +11,12 @@ default: &default development: <<: *default - database: <%= ENV.fetch("POSTGRES_DB") { "hello" } %>_development + database: <%= ENV.fetch("POSTGRES_DB") { "warikan" } %>_development test: <<: *default - database: <%= ENV.fetch("POSTGRES_DB") { "hello" } %>_test + database: <%= ENV.fetch("POSTGRES_DB") { "warikan" } %>_test production: <<: *default - database: <%= ENV.fetch("POSTGRES_DB") { "hello" } %>_production + database: <%= ENV.fetch("POSTGRES_DB") { "warikan" } %>_production diff --git a/config/environment.rb b/config/environment.rb index cac53157..426333bb 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -1,5 +1,5 @@ # Load the Rails application. -require_relative "application" +require_relative 'application' # Initialize the Rails application. Rails.application.initialize! diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb index 6feaec25..5323cffc 100644 --- a/config/initializers/assets.rb +++ b/config/initializers/assets.rb @@ -1,14 +1,14 @@ # Be sure to restart your server when you modify this file. # Version of your assets, change this if you want to expire all your assets. -Rails.application.config.assets.version = "1.0" +Rails.application.config.assets.version = '1.0' # Add additional assets to the asset load path. # Rails.application.config.assets.paths << Emoji.images_path # Add node_modules folder to the asset load path, its location has been # customized due to what's set in .yarnrc. -Rails.application.config.assets.paths << "/node_modules" +Rails.application.config.assets.paths << '/node_modules' # Precompile additional assets. # application.js, application.css, and all non-JS/CSS in the app/assets diff --git a/config/initializers/devise.rb b/config/initializers/devise.rb new file mode 100644 index 00000000..56e9df25 --- /dev/null +++ b/config/initializers/devise.rb @@ -0,0 +1,313 @@ +# frozen_string_literal: true + +# Assuming you have not yet modified this file, each configuration option below +# is set to its default value. Note that some are commented out while others +# are not: uncommented lines are intended to protect your configuration from +# breaking changes in upgrades (i.e., in the event that future versions of +# Devise change the default values for those options). +# +# Use this hook to configure devise mailer, warden hooks and so forth. +# Many of these configuration options can be set straight in your model. +Devise.setup do |config| + # The secret key used by Devise. Devise uses this key to generate + # random tokens. Changing this key will render invalid all existing + # confirmation, reset password and unlock tokens in the database. + # Devise will use the `secret_key_base` as its `secret_key` + # by default. You can change it below and use your own secret key. + # config.secret_key = '5bc3394bceb793338e1a25a4402b2c59a5ff539756306e614cb0b261b333030c636f4f91da3b55cb2bc661093af0903554f940314b94372eab918402dd27019a' + + # ==> Controller configuration + # Configure the parent class to the devise controllers. + # config.parent_controller = 'DeviseController' + + # ==> Mailer Configuration + # Configure the e-mail address which will be shown in Devise::Mailer, + # note that it will be overwritten if you use your own mailer class + # with default "from" parameter. + config.mailer_sender = 'please-change-me-at-config-initializers-devise@example.com' + + # Configure the class responsible to send e-mails. + # config.mailer = 'Devise::Mailer' + + # Configure the parent class responsible to send e-mails. + # config.parent_mailer = 'ActionMailer::Base' + + # ==> ORM configuration + # Load and configure the ORM. Supports :active_record (default) and + # :mongoid (bson_ext recommended) by default. Other ORMs may be + # available as additional gems. + require 'devise/orm/active_record' + + # ==> Configuration for any authentication mechanism + # Configure which keys are used when authenticating a user. The default is + # just :email. You can configure it to use [:username, :subdomain], so for + # authenticating a user, both parameters are required. Remember that those + # parameters are used only when authenticating and not when retrieving from + # session. If you need permissions, you should implement that in a before filter. + # You can also supply a hash where the value is a boolean determining whether + # or not authentication should be aborted when the value is not present. + # config.authentication_keys = [:email] + + # Configure parameters from the request object used for authentication. Each entry + # given should be a request method and it will automatically be passed to the + # find_for_authentication method and considered in your model lookup. For instance, + # if you set :request_keys to [:subdomain], :subdomain will be used on authentication. + # The same considerations mentioned for authentication_keys also apply to request_keys. + # config.request_keys = [] + + # Configure which authentication keys should be case-insensitive. + # These keys will be downcased upon creating or modifying a user and when used + # to authenticate or find a user. Default is :email. + config.case_insensitive_keys = [:email] + + # Configure which authentication keys should have whitespace stripped. + # These keys will have whitespace before and after removed upon creating or + # modifying a user and when used to authenticate or find a user. Default is :email. + config.strip_whitespace_keys = [:email] + + # Tell if authentication through request.params is enabled. True by default. + # It can be set to an array that will enable params authentication only for the + # given strategies, for example, `config.params_authenticatable = [:database]` will + # enable it only for database (email + password) authentication. + # config.params_authenticatable = true + + # Tell if authentication through HTTP Auth is enabled. False by default. + # It can be set to an array that will enable http authentication only for the + # given strategies, for example, `config.http_authenticatable = [:database]` will + # enable it only for database authentication. + # For API-only applications to support authentication "out-of-the-box", you will likely want to + # enable this with :database unless you are using a custom strategy. + # The supported strategies are: + # :database = Support basic authentication with authentication key + password + # config.http_authenticatable = false + + # If 401 status code should be returned for AJAX requests. True by default. + # config.http_authenticatable_on_xhr = true + + # The realm used in Http Basic Authentication. 'Application' by default. + # config.http_authentication_realm = 'Application' + + # It will change confirmation, password recovery and other workflows + # to behave the same regardless if the e-mail provided was right or wrong. + # Does not affect registerable. + # config.paranoid = true + + # By default Devise will store the user in session. You can skip storage for + # particular strategies by setting this option. + # Notice that if you are skipping storage for all authentication paths, you + # may want to disable generating routes to Devise's sessions controller by + # passing skip: :sessions to `devise_for` in your config/routes.rb + config.skip_session_storage = [:http_auth] + + # By default, Devise cleans up the CSRF token on authentication to + # avoid CSRF token fixation attacks. This means that, when using AJAX + # requests for sign in and sign up, you need to get a new CSRF token + # from the server. You can disable this option at your own risk. + # config.clean_up_csrf_token_on_authentication = true + + # When false, Devise will not attempt to reload routes on eager load. + # This can reduce the time taken to boot the app but if your application + # requires the Devise mappings to be loaded during boot time the application + # won't boot properly. + # config.reload_routes = true + + # ==> Configuration for :database_authenticatable + # For bcrypt, this is the cost for hashing the password and defaults to 12. If + # using other algorithms, it sets how many times you want the password to be hashed. + # The number of stretches used for generating the hashed password are stored + # with the hashed password. This allows you to change the stretches without + # invalidating existing passwords. + # + # Limiting the stretches to just one in testing will increase the performance of + # your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use + # a value less than 10 in other environments. Note that, for bcrypt (the default + # algorithm), the cost increases exponentially with the number of stretches (e.g. + # a value of 20 is already extremely slow: approx. 60 seconds for 1 calculation). + config.stretches = Rails.env.test? ? 1 : 12 + + # Set up a pepper to generate the hashed password. + # config.pepper = '6afa776dd2734a490dc881e8de1a0d3dd91d0eebb5f88170dd9ae4fdc5a022682d9fcb04b83f8b8409ddca8966363631de95381530394d59cadda02e21165cfc' + + # Send a notification to the original email when the user's email is changed. + # config.send_email_changed_notification = false + + # Send a notification email when the user's password is changed. + # config.send_password_change_notification = false + + # ==> Configuration for :confirmable + # A period that the user is allowed to access the website even without + # confirming their account. For instance, if set to 2.days, the user will be + # able to access the website for two days without confirming their account, + # access will be blocked just in the third day. + # You can also set it to nil, which will allow the user to access the website + # without confirming their account. + # Default is 0.days, meaning the user cannot access the website without + # confirming their account. + # config.allow_unconfirmed_access_for = 2.days + + # A period that the user is allowed to confirm their account before their + # token becomes invalid. For example, if set to 3.days, the user can confirm + # their account within 3 days after the mail was sent, but on the fourth day + # their account can't be confirmed with the token any more. + # Default is nil, meaning there is no restriction on how long a user can take + # before confirming their account. + # config.confirm_within = 3.days + + # If true, requires any email changes to be confirmed (exactly the same way as + # initial account confirmation) to be applied. Requires additional unconfirmed_email + # db field (see migrations). Until confirmed, new email is stored in + # unconfirmed_email column, and copied to email column on successful confirmation. + config.reconfirmable = true + + # Defines which key will be used when confirming an account + # config.confirmation_keys = [:email] + + # ==> Configuration for :rememberable + # The time the user will be remembered without asking for credentials again. + # config.remember_for = 2.weeks + + # Invalidates all the remember me tokens when the user signs out. + config.expire_all_remember_me_on_sign_out = true + + # If true, extends the user's remember period when remembered via cookie. + # config.extend_remember_period = false + + # Options to be passed to the created cookie. For instance, you can set + # secure: true in order to force SSL only cookies. + # config.rememberable_options = {} + + # ==> Configuration for :validatable + # Range for password length. + config.password_length = 6..128 + + # Email regex used to validate email formats. It simply asserts that + # one (and only one) @ exists in the given string. This is mainly + # to give user feedback and not to assert the e-mail validity. + config.email_regexp = /\A[^@\s]+@[^@\s]+\z/ + + # ==> Configuration for :timeoutable + # The time you want to timeout the user session without activity. After this + # time the user will be asked for credentials again. Default is 30 minutes. + # config.timeout_in = 30.minutes + + # ==> Configuration for :lockable + # Defines which strategy will be used to lock an account. + # :failed_attempts = Locks an account after a number of failed attempts to sign in. + # :none = No lock strategy. You should handle locking by yourself. + # config.lock_strategy = :failed_attempts + + # Defines which key will be used when locking and unlocking an account + # config.unlock_keys = [:email] + + # Defines which strategy will be used to unlock an account. + # :email = Sends an unlock link to the user email + # :time = Re-enables login after a certain amount of time (see :unlock_in below) + # :both = Enables both strategies + # :none = No unlock strategy. You should handle unlocking by yourself. + # config.unlock_strategy = :both + + # Number of authentication tries before locking an account if lock_strategy + # is failed attempts. + # config.maximum_attempts = 20 + + # Time interval to unlock the account if :time is enabled as unlock_strategy. + # config.unlock_in = 1.hour + + # Warn on the last attempt before the account is locked. + # config.last_attempt_warning = true + + # ==> Configuration for :recoverable + # + # Defines which key will be used when recovering the password for an account + # config.reset_password_keys = [:email] + + # Time interval you can reset your password with a reset password key. + # Don't put a too small interval or your users won't have the time to + # change their passwords. + config.reset_password_within = 6.hours + + # When set to false, does not sign a user in automatically after their password is + # reset. Defaults to true, so a user is signed in automatically after a reset. + # config.sign_in_after_reset_password = true + + # ==> Configuration for :encryptable + # Allow you to use another hashing or encryption algorithm besides bcrypt (default). + # You can use :sha1, :sha512 or algorithms from others authentication tools as + # :clearance_sha1, :authlogic_sha512 (then you should set stretches above to 20 + # for default behavior) and :restful_authentication_sha1 (then you should set + # stretches to 10, and copy REST_AUTH_SITE_KEY to pepper). + # + # Require the `devise-encryptable` gem when using anything other than bcrypt + # config.encryptor = :sha512 + + # ==> Scopes configuration + # Turn scoped views on. Before rendering "sessions/new", it will first check for + # "users/sessions/new". It's turned off by default because it's slower if you + # are using only default views. + config.scoped_views = true + + # Configure the default scope given to Warden. By default it's the first + # devise role declared in your routes (usually :user). + # config.default_scope = :user + + # Set this configuration to false if you want /users/sign_out to sign out + # only the current scope. By default, Devise signs out all scopes. + # config.sign_out_all_scopes = true + + # ==> Navigation configuration + # Lists the formats that should be treated as navigational. Formats like + # :html should redirect to the sign in page when the user does not have + # access, but formats like :xml or :json, should return 401. + # + # If you have any extra navigational formats, like :iphone or :mobile, you + # should add them to the navigational formats lists. + # + # The "*/*" below is required to match Internet Explorer requests. + # config.navigational_formats = ['*/*', :html, :turbo_stream] + + # The default HTTP method used to sign out a resource. Default is :delete. + config.sign_out_via = :delete + + # ==> OmniAuth + # Add a new OmniAuth provider. Check the wiki for more information on setting + # up on your models and hooks. + # config.omniauth :github, 'APP_ID', 'APP_SECRET', scope: 'user,public_repo' + + # ==> Warden configuration + # If you want to use other strategies, that are not supported by Devise, or + # change the failure app, you can configure them inside the config.warden block. + # + # config.warden do |manager| + # manager.intercept_401 = false + # manager.default_strategies(scope: :user).unshift :some_external_strategy + # end + + # ==> Mountable engine configurations + # When using Devise inside an engine, let's call it `MyEngine`, and this engine + # is mountable, there are some extra configurations to be taken into account. + # The following options are available, assuming the engine is mounted as: + # + # mount MyEngine, at: '/my_engine' + # + # The router that invoked `devise_for`, in the example above, would be: + # config.router_name = :my_engine + # + # When using OmniAuth, Devise cannot automatically set OmniAuth path, + # so you need to do it manually. For the users scope, it would be: + # config.omniauth_path_prefix = '/my_engine/users/auth' + + # ==> Hotwire/Turbo configuration + # When using Devise with Hotwire/Turbo, the http status for error responses + # and some redirects must match the following. The default in Devise for existing + # apps is `200 OK` and `302 Found respectively`, but new apps are generated with + # these new defaults that match Hotwire/Turbo behavior. + # Note: These might become the new default in future versions of Devise. + config.responder.error_status = :unprocessable_entity + config.responder.redirect_status = :see_other + + # ==> Configuration for :registerable + + # When set to false, does not sign a user in automatically after their password is + # changed. Defaults to true, so a user is signed in automatically after changing a password. + # config.sign_in_after_change_password = true +end diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb index 4b34a036..3e696949 100644 --- a/config/initializers/filter_parameter_logging.rb +++ b/config/initializers/filter_parameter_logging.rb @@ -1,6 +1,6 @@ # Be sure to restart your server when you modify this file. # Configure sensitive parameters which will be filtered from the log file. -Rails.application.config.filter_parameters += [ - :passw, :secret, :token, :_key, :crypt, :salt, :certificate, :otp, :ssn +Rails.application.config.filter_parameters += %i[ + passw secret token _key crypt salt certificate otp ssn ] diff --git a/config/initializers/rack_mini_profiler.rb b/config/initializers/rack_mini_profiler.rb index 3142b91a..e99bf5df 100644 --- a/config/initializers/rack_mini_profiler.rb +++ b/config/initializers/rack_mini_profiler.rb @@ -1,3 +1 @@ -if Rails.env.development? - Rack::MiniProfiler.config.enable_hotwire_turbo_drive_support = true -end +Rack::MiniProfiler.config.enable_hotwire_turbo_drive_support = true if Rails.env.development? diff --git a/config/initializers/redis.rb b/config/initializers/redis.rb index 4f80c2e1..09b749b4 100644 --- a/config/initializers/redis.rb +++ b/config/initializers/redis.rb @@ -1,5 +1,5 @@ module RedisConn def self.current - @redis ||= Redis.new(url: ENV.fetch("REDIS_URL") { "redis://redis:6379/1" }) + @current ||= Redis.new(url: ENV.fetch('REDIS_URL') { 'redis://redis:6379/1' }) end end diff --git a/config/initializers/sidekiq.rb b/config/initializers/sidekiq.rb index ea96d81c..2945258d 100644 --- a/config/initializers/sidekiq.rb +++ b/config/initializers/sidekiq.rb @@ -1,4 +1,4 @@ -sidekiq_config = { url: ENV.fetch("REDIS_URL") { "redis://redis:6379/1" } } +sidekiq_config = { url: ENV.fetch('REDIS_URL') { 'redis://redis:6379/1' } } Sidekiq.configure_server do |config| config.redis = sidekiq_config diff --git a/config/locales/devise.en.yml b/config/locales/devise.en.yml new file mode 100644 index 00000000..260e1c4b --- /dev/null +++ b/config/locales/devise.en.yml @@ -0,0 +1,65 @@ +# Additional translations at https://github.com/heartcombo/devise/wiki/I18n + +en: + devise: + confirmations: + confirmed: "Your email address has been successfully confirmed." + send_instructions: "You will receive an email with instructions for how to confirm your email address in a few minutes." + send_paranoid_instructions: "If your email address exists in our database, you will receive an email with instructions for how to confirm your email address in a few minutes." + failure: + already_authenticated: "You are already signed in." + inactive: "Your account is not activated yet." + invalid: "Invalid %{authentication_keys} or password." + locked: "Your account is locked." + last_attempt: "You have one more attempt before your account is locked." + not_found_in_database: "Invalid %{authentication_keys} or password." + timeout: "Your session expired. Please sign in again to continue." + unauthenticated: "You need to sign in or sign up before continuing." + unconfirmed: "You have to confirm your email address before continuing." + mailer: + confirmation_instructions: + subject: "Confirmation instructions" + reset_password_instructions: + subject: "Reset password instructions" + unlock_instructions: + subject: "Unlock instructions" + email_changed: + subject: "Email Changed" + password_change: + subject: "Password Changed" + omniauth_callbacks: + failure: "Could not authenticate you from %{kind} because \"%{reason}\"." + success: "Successfully authenticated from %{kind} account." + passwords: + no_token: "You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided." + send_instructions: "You will receive an email with instructions on how to reset your password in a few minutes." + send_paranoid_instructions: "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes." + updated: "Your password has been changed successfully. You are now signed in." + updated_not_active: "Your password has been changed successfully." + registrations: + destroyed: "Bye! Your account has been successfully cancelled. We hope to see you again soon." + signed_up: "Welcome! You have signed up successfully." + signed_up_but_inactive: "You have signed up successfully. However, we could not sign you in because your account is not yet activated." + signed_up_but_locked: "You have signed up successfully. However, we could not sign you in because your account is locked." + signed_up_but_unconfirmed: "A message with a confirmation link has been sent to your email address. Please follow the link to activate your account." + update_needs_confirmation: "You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirmation link to confirm your new email address." + updated: "Your account has been updated successfully." + updated_but_not_signed_in: "Your account has been updated successfully, but since your password was changed, you need to sign in again." + sessions: + signed_in: "Signed in successfully." + signed_out: "Signed out successfully." + already_signed_out: "Signed out successfully." + unlocks: + send_instructions: "You will receive an email with instructions for how to unlock your account in a few minutes." + send_paranoid_instructions: "If your account exists, you will receive an email with instructions for how to unlock it in a few minutes." + unlocked: "Your account has been unlocked successfully. Please sign in to continue." + errors: + messages: + already_confirmed: "was already confirmed, please try signing in" + confirmation_period_expired: "needs to be confirmed within %{period}, please request a new one" + expired: "has expired, please request a new one" + not_found: "not found" + not_locked: "was not locked" + not_saved: + one: "1 error prohibited this %{resource} from being saved:" + other: "%{count} errors prohibited this %{resource} from being saved:" diff --git a/config/puma.rb b/config/puma.rb index 66f133d9..96e870f8 100644 --- a/config/puma.rb +++ b/config/puma.rb @@ -1,13 +1,13 @@ # Specify the bind host and environment. -bind "tcp://0.0.0.0:#{ENV.fetch("PORT") { "8000" }}" -environment ENV.fetch("RAILS_ENV") { "production" } +bind "tcp://0.0.0.0:#{ENV.fetch('PORT') { '8000' }}" +environment ENV.fetch('RAILS_ENV') { 'production' } # Puma can serve each request in a thread from an internal thread pool. # The `threads` method setting takes two numbers: a minimum and maximum. # Any libraries that use thread pools should be configured to match # the maximum value specified for Puma. Default is set to 5 threads for minimum # and maximum; this matches the default thread size of Active Record. -threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 } +threads_count = ENV.fetch('RAILS_MAX_THREADS', 5) threads threads_count, threads_count # Specifies the number of `workers` to boot in clustered mode. @@ -15,11 +15,11 @@ # the concurrency of the application would be max `threads` * `workers`. # Workers do not work on JRuby or Windows (both of which do not support # processes). It defaults to the number of (virtual cores * 2). -workers = ENV.fetch("WEB_CONCURRENCY") { Etc.nprocessors * 2 } +ENV.fetch('WEB_CONCURRENCY') { Etc.nprocessors * 2 } # Specifies the `worker_timeout` threshold that Puma will use to wait before # terminating a worker in development environments. -worker_timeout 3600 if ENV.fetch("RAILS_ENV", "development") == "development" +worker_timeout 3600 if ENV.fetch('RAILS_ENV', 'development') == 'development' # Use the `preload_app!` method when specifying a `workers` number. # This directive tells Puma to first boot the application and load code diff --git a/config/routes.rb b/config/routes.rb index 27a06af5..64abdecc 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,25 +1,13 @@ Rails.application.routes.draw do - root to: "pages#home" + devise_for :users, controllers: { + sessions: 'user/sessions', + registrations: 'user/registrations' + } + root to: 'pages#home' + resources :groups, only: %i[index new create show edit update] do + resources :expenses, only: %i[show edit update] + end - get "/up/", to: "up#index", as: :up - get "/up/databases", to: "up#databases", as: :up_databases - - # Sidekiq has a web dashboard which you can enable below. It's turned off by - # default because you very likely wouldn't want this to be available to - # everyone in production. - # - # Uncomment the 2 lines below to enable the dashboard WITHOUT authentication, - # but be careful because even anonymous web visitors will be able to see it! - # require "sidekiq/web" - # mount Sidekiq::Web => "/sidekiq" - # - # If you add Devise to this project and happen to have an admin? attribute - # on your user you can uncomment the 4 lines below to only allow access to - # the dashboard if you're an admin. Feel free to adjust things as needed. - # require "sidekiq/web" - # authenticate :user, lambda { |u| u.admin? } do - # mount Sidekiq::Web => "/sidekiq" - # end - - # Learn more about this file at: https://guides.rubyonrails.org/routing.html + get '/up/', to: 'up#index', as: :up + get '/up/databases', to: 'up#databases', as: :up_databases end diff --git a/config/spring.rb b/config/spring.rb index 15f8f536..27d71993 100644 --- a/config/spring.rb +++ b/config/spring.rb @@ -1,4 +1,4 @@ Spring.watch( - "tmp/restart.txt", - "tmp/caching-dev.txt" + 'tmp/restart.txt', + 'tmp/caching-dev.txt' ) diff --git a/db/migrate/20230620131259_devise_create_users.rb b/db/migrate/20230620131259_devise_create_users.rb new file mode 100644 index 00000000..746f3898 --- /dev/null +++ b/db/migrate/20230620131259_devise_create_users.rb @@ -0,0 +1,46 @@ +# frozen_string_literal: true + +class DeviseCreateUsers < ActiveRecord::Migration[7.0] + def change + create_table :users do |t| + ## Database authenticatable + t.string :email, null: false, default: "" + t.string :encrypted_password, null: false, default: "" + + ## Recoverable + t.string :reset_password_token + t.datetime :reset_password_sent_at + + ## Rememberable + t.datetime :remember_created_at + + ## Trackable + # t.integer :sign_in_count, default: 0, null: false + # t.datetime :current_sign_in_at + # t.datetime :last_sign_in_at + # t.string :current_sign_in_ip + # t.string :last_sign_in_ip + + ## Confirmable + # t.string :confirmation_token + # t.datetime :confirmed_at + # t.datetime :confirmation_sent_at + # t.string :unconfirmed_email # Only if using reconfirmable + + ## Lockable + # t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts + # t.string :unlock_token # Only if unlock strategy is :email or :both + # t.datetime :locked_at + t.string :name, null: false + + + + t.timestamps null: false + end + + add_index :users, :email, unique: true + add_index :users, :reset_password_token, unique: true + # add_index :users, :confirmation_token, unique: true + # add_index :users, :unlock_token, unique: true + end +end diff --git a/db/migrate/20230622135526_create_groups.rb b/db/migrate/20230622135526_create_groups.rb new file mode 100644 index 00000000..50822557 --- /dev/null +++ b/db/migrate/20230622135526_create_groups.rb @@ -0,0 +1,9 @@ +class CreateGroups < ActiveRecord::Migration[7.0] + def change + create_table :groups do |t| + t.string :name + + t.timestamps + end + end +end diff --git a/db/migrate/20230624053435_create_group_members.rb b/db/migrate/20230624053435_create_group_members.rb new file mode 100644 index 00000000..6bc7f672 --- /dev/null +++ b/db/migrate/20230624053435_create_group_members.rb @@ -0,0 +1,10 @@ +class CreateGroupMembers < ActiveRecord::Migration[7.0] + def change + create_table :group_members do |t| + t.references :user, null: false, foreign_key: true + t.references :group, null: false, foreign_key: true + + t.timestamps + end + end +end diff --git a/db/migrate/20230703133805_create_expenses.rb b/db/migrate/20230703133805_create_expenses.rb new file mode 100644 index 00000000..b45c7463 --- /dev/null +++ b/db/migrate/20230703133805_create_expenses.rb @@ -0,0 +1,11 @@ +class CreateExpenses < ActiveRecord::Migration[7.0] + def change + create_table :expenses do |t| + t.references :user, null: false, foreign_key: true + t.references :group, null: false, foreign_key: true + t.integer :amount + + t.timestamps + end + end +end diff --git a/db/schema.rb b/db/schema.rb index 4603022a..f7a661bf 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,9 +10,50 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 0) do - +ActiveRecord::Schema[7.0].define(version: 2023_07_03_133805) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" + create_table "expenses", force: :cascade do |t| + t.bigint "user_id", null: false + t.bigint "group_id", null: false + t.integer "amount" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["group_id"], name: "index_expenses_on_group_id" + t.index ["user_id"], name: "index_expenses_on_user_id" + end + + create_table "group_members", force: :cascade do |t| + t.bigint "user_id", null: false + t.bigint "group_id", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["group_id"], name: "index_group_members_on_group_id" + t.index ["user_id"], name: "index_group_members_on_user_id" + end + + create_table "groups", force: :cascade do |t| + t.string "name" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + create_table "users", force: :cascade do |t| + t.string "email", default: "", null: false + t.string "encrypted_password", default: "", null: false + t.string "reset_password_token" + t.datetime "reset_password_sent_at" + t.datetime "remember_created_at" + t.string "name", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["email"], name: "index_users_on_email", unique: true + t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true + end + + add_foreign_key "expenses", "groups" + add_foreign_key "expenses", "users" + add_foreign_key "group_members", "groups" + add_foreign_key "group_members", "users" end diff --git a/docker-compose.yml b/docker-compose.yml index c338bb61..92d7d56d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -46,7 +46,7 @@ services: environment: POSTGRES_USER: "${POSTGRES_USER}" POSTGRES_PASSWORD: "${POSTGRES_PASSWORD}" - # POSTGRES_DB: "${POSTGRES_DB}" + POSTGRES_DB: "${POSTGRES_DB}" image: "postgres:15.1-bullseye" profiles: ["postgres"] restart: "${DOCKER_RESTART_POLICY:-unless-stopped}" diff --git a/test/application_system_test_case.rb b/test/application_system_test_case.rb index d19212ab..23701b43 100644 --- a/test/application_system_test_case.rb +++ b/test/application_system_test_case.rb @@ -1,4 +1,4 @@ -require "test_helper" +require 'test_helper' class ApplicationSystemTestCase < ActionDispatch::SystemTestCase driven_by :selenium, using: :chrome, screen_size: [1400, 1400] diff --git a/test/channels/application_cable/connection_test.rb b/test/channels/application_cable/connection_test.rb index 800405f1..d05dbd24 100644 --- a/test/channels/application_cable/connection_test.rb +++ b/test/channels/application_cable/connection_test.rb @@ -1,4 +1,4 @@ -require "test_helper" +require 'test_helper' class ApplicationCable::ConnectionTest < ActionCable::Connection::TestCase # test "connects with cookies" do diff --git a/test/controllers/pages_controller_test.rb b/test/controllers/pages_controller_test.rb index a36b550c..57d0b409 100644 --- a/test/controllers/pages_controller_test.rb +++ b/test/controllers/pages_controller_test.rb @@ -1,12 +1,12 @@ -require "test_helper" +require 'test_helper' class PagesControllerTest < ActionDispatch::IntegrationTest - test "should get home" do + test 'should get home' do get root_url assert_response :success end - test "should get up" do + test 'should get up' do get up_url assert_response :success end diff --git a/test/controllers/up_controller_test.rb b/test/controllers/up_controller_test.rb index b517c427..80a9c1e7 100644 --- a/test/controllers/up_controller_test.rb +++ b/test/controllers/up_controller_test.rb @@ -1,12 +1,12 @@ -require "test_helper" +require 'test_helper' class UpControllerTest < ActionDispatch::IntegrationTest - test "should get up" do + test 'should get up' do get up_url assert_response :success end - test "should get up databases" do + test 'should get up databases' do get up_databases_url assert_response :success end diff --git a/test/test_helper.rb b/test/test_helper.rb index d713e377..d5300f88 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -1,6 +1,6 @@ -ENV["RAILS_ENV"] ||= "test" -require_relative "../config/environment" -require "rails/test_help" +ENV['RAILS_ENV'] ||= 'test' +require_relative '../config/environment' +require 'rails/test_help' class ActiveSupport::TestCase # Run tests in parallel with specified workers