Skip to content

Commit 88f2129

Browse files
committed
fix build
1 parent 8ed85bf commit 88f2129

7 files changed

+12
-16
lines changed

app/views/layouts/application.html.slim

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ html.no-js lang=I18n.locale
44
link rel= 'author' href= '/humans.txt'
55
meta name="viewport" content="initial-scale=1.0,width=device-width"
66
- if Rails.env.production?
7-
= render partial: 'shared/mixpanel'
8-
= render partial: 'shared/analytics'
7+
= render 'mixpanel'
8+
= render 'analytics'
99
= render 'fav_icons'
1010
= stylesheet_link_tag 'application'
1111
= csrf_meta_tag

app/views/layouts/error.html.slim

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ html.no-js lang=I18n.locale
44
link rel= 'author' href= '/humans.txt'
55
meta name="viewport" content="initial-scale=1.0,width=device-width"
66
- if Rails.env.production?
7-
= render partial: 'shared/mixpanel'
8-
= render partial: 'shared/analytics'
7+
= render 'mixpanel'
8+
= render 'analytics'
99
= render 'fav_icons'
1010
= stylesheet_link_tag 'application'
1111

app/views/layouts/home4-layout.html.slim

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ html.no-js lang=I18n.locale
44
link rel= 'author' href= '/humans.txt'
55
meta name="viewport" content="initial-scale=1.0,width=device-width"
66
- if Rails.env.production?
7-
= render partial: 'shared/mixpanel'
8-
= render partial: 'shared/analytics'
7+
= render 'mixpanel'
8+
= render 'analytics'
99
= render 'fav_icons'
1010
= stylesheet_link_tag 'application'
1111
= csrf_meta_tag

app/views/layouts/jobs.html.slim

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ html.no-js lang=I18n.locale
44
link rel= 'author' href= '/humans.txt'
55
meta name="viewport" content="initial-scale=1.0,width=device-width"
66
- if Rails.env.production?
7-
= render partial: 'shared/mixpanel'
8-
= render partial: 'shared/analytics'
7+
= render 'mixpanel'
8+
= render 'analytics'
99
= render 'fav_icons'
1010
= stylesheet_link_tag 'application'
1111
= csrf_meta_tag

app/views/layouts/product_description.html.slim

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ html.no-js lang=I18n.locale
44
link rel= 'author' href= '/humans.txt'
55
meta name="viewport" content="initial-scale=1.0,width=device-width"
66
- if Rails.env.production?
7-
= render partial: 'shared/mixpanel'
8-
= render partial: 'shared/analytics'
7+
= render 'mixpanel'
8+
= render 'analytics'
99
= render 'fav_icons'
1010
= stylesheet_link_tag 'application'
1111
= csrf_meta_tag

app/views/layouts/protip.html.slim

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ html.no-js lang=I18n.locale
44
link rel= 'author' href= '/humans.txt'
55
meta name="viewport" content="initial-scale=1.0,width=device-width"
66
- if Rails.env.production?
7-
= render partial: 'shared/mixpanel'
8-
= render partial: 'shared/analytics'
7+
= render 'mixpanel'
8+
= render 'analytics'
99
= render 'fav_icons'
1010
= stylesheet_link_tag 'application'
1111
= csrf_meta_tag

config/database.yml

-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ default: &default
22
adapter: postgresql
33
encoding: unicode
44
pool: 5
5-
username: postgres
6-
host: localhost
7-
port: 5432
8-
password: postgres
95

106
development:
117
<<: *default

0 commit comments

Comments
 (0)