Skip to content

Commit 8d26302

Browse files
authored
Merge pull request #488 from coopdevs/fix_favicon
Fix favicon issue
2 parents 42bc5b8 + 6ce67f1 commit 8d26302

File tree

5 files changed

+3
-13
lines changed

5 files changed

+3
-13
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: ruby
22
cache: bundler
3-
bundler_args: '--without production development'
3+
bundler_args: '--without development'
44
env: DATABASE_URL=postgres://postgres@localhost/timeoverflow_test
55
before_script:
66
- bundle exec rake db:setup

Gemfile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,3 @@ group :test do
6666
gem 'chromedriver-helper', '~> 2.1'
6767
gem 'simplecov', '~> 0.16.1', require: false
6868
end
69-
70-
group :production do
71-
gem 'rails_12factor', '0.0.3'
72-
end

Gemfile.lock

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -266,11 +266,6 @@ GEM
266266
rails-i18n (4.0.3)
267267
i18n (~> 0.6)
268268
railties (~> 4.0)
269-
rails_12factor (0.0.3)
270-
rails_serve_static_assets
271-
rails_stdout_logging
272-
rails_serve_static_assets (0.0.3)
273-
rails_stdout_logging (0.0.3)
274269
railties (4.2.11)
275270
actionpack (= 4.2.11)
276271
activesupport (= 4.2.11)
@@ -435,7 +430,6 @@ DEPENDENCIES
435430
pundit (~> 2.0.0)
436431
rails (~> 4.2)
437432
rails-i18n
438-
rails_12factor (= 0.0.3)
439433
rdiscount
440434
rollbar (= 2.8.3)
441435
rspec-rails (~> 3.8.2)

config/environments/production.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# Disable serving static files from the `/public` folder by default since
2424
# Apache or NGINX already handles this.
25-
config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
25+
config.serve_static_files = true
2626

2727
# Compress JavaScripts and CSS.
2828
config.assets.js_compressor = :uglifier

config/environments/staging.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# Disable serving static files from the `/public` folder by default since
2424
# Apache or NGINX already handles this.
25-
config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
25+
config.serve_static_files = true
2626

2727
# Compress JavaScripts and CSS.
2828
config.assets.js_compressor = :uglifier

0 commit comments

Comments
 (0)