Sha256: 9722b780a6d013eeced542a2e8e9e72e51fd65f9fb856d67d10dc063ac6f9e6c
Contents?: true
Size: 1.31 KB
Versions: 3
Compression:
Stored size: 1.31 KB
Contents
# frozen_string_literal: true require_relative "lib/standalone_activerecord_boot_loader/version" Gem::Specification.new do |spec| spec.name = "standalone_activerecord_boot_loader" spec.version = StandaloneActiverecordBootLoader::VERSION spec.authors = ["Takahiro Ooishi"] spec.email = ["taka0125@gmail.com"] spec.summary = "ActiveRecordを単体で動かす時に使う起動処理" spec.description = "ActiveRecordを単体で動かす時に使う起動処理" spec.homepage = "https://github.com/taka0125/standalone_activerecord_boot_loader" spec.required_ruby_version = ">= 2.6.0" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage # 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 do |f| (f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)}) end end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "zeitwerk" spec.add_dependency "activerecord" end
Version data entries
3 entries across 3 versions & 1 rubygems