├── .coveralls.yml ├── .gitignore ├── .mdl_style.rb ├── .mdlrc ├── .pre-commit-config.yaml ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── pagespeed_insights.rb ├── pagespeed_insights │ └── version.rb └── v5 │ └── api_v5.rb ├── ruby-pagespeed-insights.gemspec └── spec ├── pagespeed_insights_spec.rb ├── spec_helper.rb └── v5 └── api_v5_spec.rb /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: ${COVERALLS_REPO_TOKEN} -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/.gitignore -------------------------------------------------------------------------------- /.mdl_style.rb: -------------------------------------------------------------------------------- 1 | exclude_rule 'MD013' -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/.mdlrc -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/pagespeed_insights.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/lib/pagespeed_insights.rb -------------------------------------------------------------------------------- /lib/pagespeed_insights/version.rb: -------------------------------------------------------------------------------- 1 | module PagespeedInsights 2 | VERSION = '1.2.0' 3 | end 4 | -------------------------------------------------------------------------------- /lib/v5/api_v5.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/lib/v5/api_v5.rb -------------------------------------------------------------------------------- /ruby-pagespeed-insights.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/ruby-pagespeed-insights.gemspec -------------------------------------------------------------------------------- /spec/pagespeed_insights_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/spec/pagespeed_insights_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/v5/api_v5_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/ruby_pagespeed_insights/HEAD/spec/v5/api_v5_spec.rb --------------------------------------------------------------------------------