Sha256: abacebd1cb456f7246097780efb7798d16850506f38b890ffbff7b1d25ab4580

Contents?: true

Size: 1.44 KB

Versions: 1

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://wendbaar.nl"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 2.7.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

1 entries across 1 versions & 1 rubygems

Version Path
rails_key_rotator-0.1.1 rails_key_rotator.gemspec