Sha256: 0018eb2f547c8c622d21ade35a3e7bd41a53ad76d48caaeab93e841d2022f8ea
Contents?: true
Size: 1.24 KB
Versions: 12
Compression:
Stored size: 1.24 KB
Contents
# frozen_string_literal: true require_relative "lib/rspec/buildkite/analytics/version" Gem::Specification.new do |spec| spec.name = "rspec-buildkite-analytics" spec.version = RSpec::Buildkite::Analytics::VERSION spec.authors = ["Buildkite"] spec.email = ["hello@buildkite.com"] spec.summary = "Track execution of specs and report to Buildkite Analytics" spec.homepage = "https://github.com/buildkite/rspec-buildkite-analytics" spec.license = "MIT" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/buildkite/rspec-buildkite-analytics" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) } end spec.require_paths = ["lib"] spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0") spec.add_dependency "activesupport", ">= 5.2", "<= 7.0" spec.add_dependency "rspec-core", '~> 3.10' spec.add_dependency "rspec-expectations", '~> 3.10' spec.add_dependency "websocket", '~> 1.2' end
Version data entries
12 entries across 12 versions & 1 rubygems