summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Knox <psimyn@gmail.com>2017-02-16 01:07:29 +1100
committerSimon Knox <psimyn@gmail.com>2017-02-16 01:07:29 +1100
commite15032eded3b35097409817ddb1844164173ce1a (patch)
treeec08eff5462bf88b04c9af9e3c6ca6ec952451eb
parent35b31ba84fd4ea37debfaf50a5ab98a417f2158a (diff)
downloadgitlab-ce-e15032eded3b35097409817ddb1844164173ce1a.tar.gz
override favicon for development to find tabs more easily
-rw-r--r--app/assets/images/favicon-purple.icobin0 -> 5430 bytes
-rw-r--r--app/helpers/page_layout_helper.rb4
-rw-r--r--app/views/layouts/_head.html.haml2
-rw-r--r--spec/helpers/page_layout_helper_spec.rb12
4 files changed, 17 insertions, 1 deletions
diff --git a/app/assets/images/favicon-purple.ico b/app/assets/images/favicon-purple.ico
new file mode 100644
index 00000000000..71acdf670ab
--- /dev/null
+++ b/app/assets/images/favicon-purple.ico
Binary files differ
diff --git a/app/helpers/page_layout_helper.rb b/app/helpers/page_layout_helper.rb
index 7d4d049101a..aee8099aeb2 100644
--- a/app/helpers/page_layout_helper.rb
+++ b/app/helpers/page_layout_helper.rb
@@ -34,6 +34,10 @@ module PageLayoutHelper
end
end
+ def favicon
+ Rails.env.development? ? 'favicon-purple.ico' : 'favicon.ico'
+ end
+
def page_image
default = image_url('gitlab_logo.png')
diff --git a/app/views/layouts/_head.html.haml b/app/views/layouts/_head.html.haml
index f2d355587bd..302c1794628 100644
--- a/app/views/layouts/_head.html.haml
+++ b/app/views/layouts/_head.html.haml
@@ -23,7 +23,7 @@
%title= page_title(site_name)
%meta{ name: "description", content: page_description }
- = favicon_link_tag 'favicon.ico'
+ = favicon_link_tag favicon
= stylesheet_link_tag "application", media: "all"
= stylesheet_link_tag "print", media: "print"
diff --git a/spec/helpers/page_layout_helper_spec.rb b/spec/helpers/page_layout_helper_spec.rb
index dc07657e101..872679a6ce3 100644
--- a/spec/helpers/page_layout_helper_spec.rb
+++ b/spec/helpers/page_layout_helper_spec.rb
@@ -40,6 +40,18 @@ describe PageLayoutHelper do
end
end
+ describe 'favicon' do
+ it 'defaults to favicon.ico' do
+ allow(Rails).to receive(:env).and_return(ActiveSupport::StringInquirer.new('production'))
+ expect(helper.favicon).to eq 'favicon.ico'
+ end
+
+ it 'has purple favicon for development' do
+ allow(Rails).to receive(:env).and_return(ActiveSupport::StringInquirer.new('development'))
+ expect(helper.favicon).to eq 'favicon-purple.ico'
+ end
+ end
+
describe 'page_image' do
it 'defaults to the GitLab logo' do
expect(helper.page_image).to end_with 'assets/gitlab_logo.png'