Sha256: 5efcc8d64b637c6f90aba30ef9d4a700a505732800045e5db679822cd4897ee2
Contents?: true
Size: 1.23 KB
Versions: 4
Compression:
Stored size: 1.23 KB
Contents
# frozen_string_literal: true require_relative "lib/rspec/all_records_validator/version" Gem::Specification.new do |spec| spec.name = "rspec-all_records_validator" spec.version = RSpec::AllRecordsValidator::VERSION spec.authors = ["colorbox"] spec.email = ["colorbox222@gmail.com"] spec.summary = "validate all objects at end of system spec" spec.homepage = "https://github.com/colorbox/rspec-all_records_validator" spec.license = "MIT" spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0") spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage spec.metadata["changelog_uri"] = "https://github.com/colorbox/rspec-all_records_validator/blob/main/CHANGELOG.md" # 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.add_development_dependency 'rails' spec.add_development_dependency 'rspec' spec.add_development_dependency 'sqlite3' end
Version data entries
4 entries across 4 versions & 1 rubygems