Skip to content

Commit 34b1599

Browse files
committed
parent_name -> module_parent_name
1 parent a839589 commit 34b1599

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

app/views/layouts/application.html.haml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
%html
33
%head
44
%title
5-
= Rails.application.class.parent_name
5+
= Rails.application.class.module_parent_name
66
= csrf_meta_tags
77
= stylesheet_link_tag 'application', media: 'all'
88
= javascript_include_tag 'application', defer: true
99
= render 'shared/heap'
1010
%body
1111
%nav.navbar.navbar-expand-lg.navbar-light.bg-light
1212
%a.navbar-brand{href: '#'}
13-
= Rails.application.class.parent_name
13+
= Rails.application.class.module_parent_name
1414
%button.navbar-toggler{"aria-controls" => "navbarSupportedContent", "aria-expanded" => "false", "aria-label" => "Toggle navigation", "data-target" => "#navbarSupportedContent", "data-toggle" => "collapse", :type => "button"}
1515
%span.navbar-toggler-icon
1616
#navbarSupportedContent.collapse.navbar-collapse
@@ -55,5 +55,5 @@
5555
Terms
5656
.row.justify-content-md-center
5757
.col.col-md-auto
58-
= Rails.application.class.parent_name
59-
© 2018
58+
= Rails.application.class.module_parent_name
59+
© 2021

db/schema.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
# of editing this file, please use the migrations feature of Active Record to
33
# incrementally modify your database, and then regenerate this schema definition.
44
#
5-
# Note that this schema.rb definition is the authoritative source for your
6-
# database schema. If you need to create the application database on another
7-
# system, you should be using db:schema:load, not running all the migrations
8-
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
9-
# you'll amass, the slower it'll run and the greater likelihood for issues).
5+
# This file is the source Rails uses to define your schema when running `rails
6+
# db:schema:load`. When creating a new database, `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.
1010
#
1111
# It's strongly recommended that you check this file into your version control system.
1212

13-
ActiveRecord::Schema.define(version: 2018_11_12_202502) do
13+
ActiveRecord::Schema.define(version: 2021_01_01_185411) do
1414

1515
# These are extensions that must be enabled in order to support this database
1616
enable_extension "plpgsql"

0 commit comments

Comments
 (0)