Sha256: 55715613294bfe4ab3931eb4d0fd7fc61aea978aa355200a1343b7e43da8f998
Contents?: true
Size: 1.44 KB
Versions: 2
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.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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rails_key_rotator-0.1.3 | rails_key_rotator.gemspec |
rails_key_rotator-0.1.2 | rails_key_rotator.gemspec |