# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'plausible_api/version' Gem::Specification.new do |s| s.name = 'plausible_api' s.version = PlausibleApi::VERSION s.summary = 'A simple Plausible API wrapper for Rails' s.description = 'A very humble wrapper for the new API by Plausible' s.authors = ['Gustavo Garcia'] s.email = 'gustavo@dailytics.com' s.homepage = 'https://github.com/dailytics/plausible-api' s.license = 'MIT' s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) } s.require_paths = ['lib'] s.add_dependency 'faraday', '~> 1.0' s.required_ruby_version = '>= 2.4' end