Skip to content

Commit

Permalink
Fix Rails deprecation and Compass warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
monfresh committed Mar 27, 2015
1 parent 3dd53ad commit e8448aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/assets/stylesheets/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
{
.toggle-container
{
@include single-box-shadow(rgba($black, 0.1), 0px, 1px, 6px, 1px, inset);
@include single-box-shadow(0px, 1px, 6px, 1px, rgba($black, 0.1), inset);
@include rounded-except(none);
padding: 10px;
background: rgba($black, 0.05);
Expand Down
2 changes: 1 addition & 1 deletion config/environments/production.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
# https://devcenter.heroku.com/articles/rack-cache-memcached-rails31
# ------------------------------------------------------------------

config.serve_static_assets = true
config.serve_static_files = true

# Asset digests allow you to set far-future HTTP expiration dates on all assets,
# yet still be able to expire them through the digest params.
Expand Down
2 changes: 1 addition & 1 deletion config/environments/staging.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# https://devcenter.heroku.com/articles/rack-cache-memcached-rails31
# ------------------------------------------------------------------

config.serve_static_assets = true
config.serve_static_files = true

# Generate digests for assets URLs.
config.assets.digest = true
Expand Down

0 comments on commit e8448aa

Please sign in to comment.