27381e22a9
Files in lib will be eager loaded and hence will require haml_lint to be loaded. Since this is only a development dependency, we can't assume this gem will be available in production, so it should never be loaded in production.
17 lines
519 B
Ruby
17 lines
519 B
Ruby
unless Rails.env.production?
|
|
require 'haml_lint/rake_task'
|
|
require Rails.root.join('haml_lint/inline_javascript')
|
|
|
|
# Workaround for warnings from parser/current
|
|
# Keep it even if it no longer emits any warnings,
|
|
# because we'll still see warnings in console/server anyway,
|
|
# and we don't need to break static-analysis for this.
|
|
task :haml_lint do
|
|
require 'parser'
|
|
def Parser.warn(*args)
|
|
puts(*args) # static-analysis ignores stdout if status is 0
|
|
end
|
|
end
|
|
|
|
HamlLint::RakeTask.new
|
|
end
|