Sha256: 0ba1c13456540cad0c56984ba118ef39aa5cf63ae9c746d8703da8a878236f36
Contents?: true
Size: 1.52 KB
Versions: 1
Compression:
Stored size: 1.52 KB
Contents
require "lighthouse/preferences" require "json" module Lighthouse module Ruby class Builder def initialize @runner = Lighthouse::Preferences.runner @cli = Lighthouse::Preferences.lighthouse_cli @port = Lighthouse::Preferences.remote_debugging_port @chrome_flags = Lighthouse::Preferences.chrome_flags @lighthouse_options = Lighthouse::Preferences.lighthouse_options end def execute(url) @response = @runner.call("#{@cli} #{options(url)}") end def test_scores get_test_scores(@response) end private def options(url) "'#{url}'".tap do |builder| builder << ' --quiet' builder << ' --output=json' builder << " --port=#{@port}" if @port builder << " --#{@lighthouse_options}" if @lighthouse_options builder << " --chrome-flags='#{@chrome_flags}'" if @chrome_flags end.strip end def get_test_scores(response) json_result = JSON.parse(response) @test_scores = { url: @url} @test_scores[:run_time] = Time.now @test_scores[:performance] = json_result.dig("categories", "performance" , "score") * 100 @test_scores[:accessibility] = json_result.dig("categories", "accessibility" , "score") * 100 @test_scores[:best_practices] = json_result.dig("categories", "best-practices" , "score") * 100 @test_scores[:seo] = json_result.dig("categories", "seo" , "score") * 100 @test_scores end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lighthouse-ruby-0.1.2 | lib/lighthouse/ruby/builder.rb |