Skip to content

Commit

Permalink
Redo Gemspec file
Browse files Browse the repository at this point in the history
  • Loading branch information
rzhade3 committed Dec 11, 2024
1 parent 52256a2 commit 088d62c
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions secure_headers.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,20 @@ Gem::Specification.new do |gem|
including content-security-policy, x-frame-options,
strict-transport-security, etc.'
gem.homepage = "https://github.com/github/secure_headers"
gem.metadata = {
"bug_tracker_uri" => "https://github.com/github/secure_headers/issues",
"changelog_uri" => "https://github.com/github/secure_headers/blob/master/CHANGELOG.md",
"documentation_uri" => "https://rubydoc.info/gems/secure_headers",
"homepage_uri" => gem.homepage,
"source_code_uri" => "https://github.com/github/secure_headers",
"rubygems_mfa_required" => "true",
}
gem.license = "MIT"
gem.files = Dir["bin/**/*", "lib/**/*", "spec/**/*"] + ["README.md", "Gemfile", "Guardfile", "Rakefile", ".rspec", ".rubocop.yml", "secure_headers.gemspec"]
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})

gem.files = Dir["bin/**/*", "lib/**/*", "README.md", "CHANGELOG.md", "LICENSE", "Gemfile", "secure_headers.gemspec"]
gem.require_paths = ["lib"]

gem.extra_rdoc_files = Dir["README.md", "CHANGELOG.md", "LICENSE"]

gem.add_development_dependency "rake"
end

0 comments on commit 088d62c

Please sign in to comment.