Sha256: 392949ca4af41e3bc45fa345a8a829c64a373c972fa0a9a8c97496247c9577de

Contents?: true

Size: 1.41 KB

Versions: 5

Compression:

Stored size: 1.41 KB

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'factory_bot/instrumentation/version'

Gem::Specification.new do |spec|
  spec.name = 'factory_bot_instrumentation'
  spec.version = FactoryBot::Instrumentation::VERSION
  spec.authors = ['Hermann Mayer']
  spec.email = ['hermann.mayer92@gmail.com']

  spec.license = 'MIT'
  spec.summary = 'Allow your testers to generate test data on demand'
  spec.description = 'Allow your testers to generate test data on demand'

  base_uri = "https://github.com/hausgold/#{spec.name}"
  spec.metadata = {
    'homepage_uri' => base_uri,
    'source_code_uri' => base_uri,
    'changelog_uri' => "#{base_uri}/blob/master/CHANGELOG.md",
    'bug_tracker_uri' => "#{base_uri}/issues",
    'documentation_uri' => "https://www.rubydoc.info/gems/#{spec.name}"
  }

  spec.files = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end

  spec.bindir = 'exe'
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.required_ruby_version = '>= 2.7'

  # TODO: Remove the upper lock when
  #       https://github.com/thoughtbot/factory_bot/issues/1614 is solved.
  spec.add_runtime_dependency 'factory_bot', '~> 6.2', '< 6.4.5'
  spec.add_runtime_dependency 'rails', '>= 5.2'
  spec.add_runtime_dependency 'retries', '>= 0.0.5'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
factory_bot_instrumentation-1.2.4 factory_bot_instrumentation.gemspec
factory_bot_instrumentation-1.2.3 factory_bot_instrumentation.gemspec
factory_bot_instrumentation-1.2.2 factory_bot_instrumentation.gemspec
factory_bot_instrumentation-1.2.1 factory_bot_instrumentation.gemspec
factory_bot_instrumentation-1.2.0 factory_bot_instrumentation.gemspec