Sha256: b4fed6ea337af46ba48b36d245e3edb2b706f71cba9209d8140c190b6c0604a5
Contents?: true
Size: 1.44 KB
Versions: 4
Compression:
Stored size: 1.44 KB
Contents
# frozen_string_literal: true require_relative "lib/rails_key_rotator/version" Gem::Specification.new do |spec| spec.name = "rails_key_rotator" spec.version = RailsKeyRotator::VERSION spec.authors = ["Leon Berenschot"] spec.email = ["leon@wendbaar.nl"] spec.summary = "Rotate your RAILS_MASTER_KEY with ease" # spec.description = "TODO: Write a longer description or delete this line." spec.homepage = "https://www.wendbaar.nl" spec.license = "MIT" spec.required_ruby_version = ">= 2.6.0" # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'" spec.metadata["rubygems_mfa_required"] = "true" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/LeipeLeon/rails_key_rotator" spec.metadata["changelog_uri"] = "https://github.com/LeipeLeon/rails_key_rotator/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(__dir__) do `git ls-files -z`.split("\x0").reject do |f| (File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile]) end end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_runtime_dependency "activesupport", ">= 6.0", "< 7.2" end
Version data entries
4 entries across 4 versions & 1 rubygems