Skip to content

Commit fce6029

Browse files
committed
change assets name
1 parent 0552f5d commit fce6029

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

app/views/accounts/new.html.haml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
=tag :meta, :name => "stripe-key", :content => STRIPE_PUBLIC_KEY
44

55
-content_for :javascript do
6-
=javascript_include_tag "https://js.stripe.com/v1/", "application"
6+
=javascript_include_tag "https://js.stripe.com/v1/", "coderwall"
77
=javascript_include_tag 'accounts'
88

99
.main-content

app/views/application/_footer.html.slim

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ footer#footer
2525
= yield :credits
2626

2727

28-
= javascript_include_tag 'application'
28+
= javascript_include_tag 'coderwall'
2929
= render 'shared/mixpanel_properties'
3030
= yield :javascript

app/views/layouts/application.html.slim

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ html.no-js lang=I18n.locale
88
= render 'mixpanel'
99
= render 'analytics'
1010
= render 'fav_icons'
11-
= stylesheet_link_tag 'application'
11+
= stylesheet_link_tag 'coderwall'
1212
= csrf_meta_tag
1313

1414
meta content= page_description(yield(:page_description)) name= 'description' property= 'og:description'

app/views/layouts/error.html.slim

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ html.no-js lang=I18n.locale
88
= render 'mixpanel'
99
= render 'analytics'
1010
= render 'fav_icons'
11-
= stylesheet_link_tag 'application'
11+
= stylesheet_link_tag 'coderwall'
1212

1313
body style = 'background: #bacbd8;'
1414
= yield

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ html.no-js lang=I18n.locale
88
= render 'mixpanel'
99
= render 'analytics'
1010
= render 'fav_icons'
11-
= stylesheet_link_tag 'application'
11+
= stylesheet_link_tag 'coderwall'
1212
= csrf_meta_tag
1313

1414
meta name='twitter:account_id' content=ENV['TWITTER_ACCOUNT_ID']

app/views/layouts/jobs.html.slim

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ html.no-js lang=I18n.locale
88
= render 'mixpanel'
99
= render 'analytics'
1010
= render 'fav_icons'
11-
= stylesheet_link_tag 'application'
11+
= stylesheet_link_tag 'coderwall'
1212
= csrf_meta_tag
1313

1414
= yield :head

app/views/layouts/product_description.html.slim

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ html.no-js lang=I18n.locale
88
= render 'mixpanel'
99
= render 'analytics'
1010
= render 'fav_icons'
11-
= stylesheet_link_tag 'application'
11+
= stylesheet_link_tag 'coderwall'
1212
= csrf_meta_tag
1313

1414
= yield :head

app/views/layouts/protip.html.slim

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ html.no-js lang=I18n.locale
88
= render 'mixpanel'
99
= render 'analytics'
1010
= render 'fav_icons'
11-
= stylesheet_link_tag 'application'
11+
= stylesheet_link_tag 'coderwall'
1212
= csrf_meta_tag
1313

1414
meta name='twitter:account_id' content=ENV['TWITTER_ACCOUNT_ID']
@@ -32,7 +32,7 @@ html.no-js lang=I18n.locale
3232
javascript:
3333
window.console.log = function(){};
3434
35-
= javascript_include_tag 'application'
35+
= javascript_include_tag 'coderwall'
3636
= render partial: 'shared/mixpanel_properties'
3737
= javascript_include_tag 'highlight/highlight.js'
3838
= javascript_include_tag 'highlight/language.js'

config/initializers/assets.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Coderwall::Application.configure do
22
config.assets.precompile << /\.(?:svg|eot|woff|ttf)$/
33
config.assets.precompile << 'alert.css'
4-
config.assets.precompile << 'application.css'
5-
config.assets.precompile << 'application.js'
4+
config.assets.precompile << 'coderwall.css'
5+
config.assets.precompile << 'coderwall.js'
66
config.assets.precompile << 'product_description.css'
77
config.assets.precompile << 'premium-teams.css'
88
config.assets.precompile << 'protip.css'
@@ -31,6 +31,6 @@
3131
# config.assets.precompile << 'jquery-ketchup.all.min.js'
3232
config.assets.precompile << 'user.js'
3333
config.assets.precompile << 'autosaver.js'
34-
config.assets.version = '1.2'
34+
config.assets.version = '1.5'
3535
end
3636

0 commit comments

Comments
 (0)