-
- Downloads
Replace Haml with Hamlit.
Hamlit is a library that's faster than Haml while implementing most of its features: https://github.com/k0kubun/hamlit Not sure if this breaks anything, but as far as I can tell most things work the same. No obvious regressions that I've been able to find.
Showing
- Gemfile 2 additions, 1 deletionGemfile
- Gemfile.lock 5 additions, 13 deletionsGemfile.lock
- app/helpers/application_helper.rb 1 addition, 1 deletionapp/helpers/application_helper.rb
- config/initializers/haml.rb 0 additions, 7 deletionsconfig/initializers/haml.rb
- config/initializers/hamlit.rb 15 additions, 0 deletionsconfig/initializers/hamlit.rb
Loading
| @@ -76,7 +76,7 @@ gem 'rack-cors', '~> 0.4.0', require: 'rack/cors' | Loading
| @@ -76,7 +76,7 @@ gem 'rack-cors', '~> 0.4.0', require: 'rack/cors' |
gem "kaminari", "~> 0.17.0" | gem "kaminari", "~> 0.17.0" | ||
# HAML | # HAML | ||
gem "haml-rails", '~> 0.9.0' | gem "hamlit" | ||
# Files attachments | # Files attachments | ||
gem "carrierwave", '~> 0.10.0' | gem "carrierwave", '~> 0.10.0' | ||
Loading
| @@ -344,5 +344,6 @@ gem 'oauth2', '~> 1.0.0' | Loading
| @@ -344,5 +344,6 @@ gem 'oauth2', '~> 1.0.0' |
# Soft deletion | # Soft deletion | ||
gem "paranoia", "~> 2.0" | gem "paranoia", "~> 2.0" | ||
# Health check | # Health check | ||
gem 'health_check', '~> 1.5.1' | gem 'health_check', '~> 1.5.1' |
config/initializers/haml.rb
deleted
100644 → 0
config/initializers/hamlit.rb
0 → 100644
Please register or sign in to comment