Sha256: 96bdfc0bd018139ccf7c2f8f528397a5153aa6547e3fa40c75db498dd7a9f2f7
Contents?: true
Size: 1.23 KB
Versions: 2
Compression:
Stored size: 1.23 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", '~> 6.1' spec.add_dependency "rspec-core", '~> 3.10' spec.add_dependency "rspec-expectations", '~> 3.10' spec.add_dependency "websocket", '~> 1.2' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rspec-buildkite-analytics-0.3.0 | rspec-buildkite-analytics.gemspec |
rspec-buildkite-analytics-0.2.0 | rspec-buildkite-analytics.gemspec |