1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activestorage/lib/active_storage/analyzer/null_analyzer.rb
2017-10-22 13:16:59 -04:00

13 lines
195 B
Ruby

# frozen_string_literal: true
module ActiveStorage
class Analyzer::NullAnalyzer < Analyzer # :nodoc:
def self.accept?(blob)
true
end
def metadata
{}
end
end
end