Sha256: 7fb4086c459653bde488b8c28d724af5fc1adf2b19c6f26458bf110cb9806d4f
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
# frozen_string_literal: true require_relative "lib/bridgetown-content-security-policy/version" Gem::Specification.new do |spec| spec.name = "bridgetown-content-security-policy" spec.version = BridgetownContentSecurityPolicy::VERSION spec.author = "Ayush Newatia" spec.email = "ayush@hey.com" spec.summary = "Add a content security policy to your website using a convenient Ruby DSL" spec.homepage = "https://github.com/ayushn21/bridgetown-content-security-policy" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(test|script|features|frontend)/!) } spec.test_files = spec.files.grep(%r!^test/!) spec.require_paths = ["lib"] spec.metadata = {} spec.required_ruby_version = ">= 2.7.0" spec.add_dependency "bridgetown", ">= 1.2.0", "< 2.0" spec.add_development_dependency "bundler" spec.add_development_dependency "nokogiri" spec.add_development_dependency "rake" spec.add_development_dependency "rubocop-bridgetown" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bridgetown-content-security-policy-2.0.0 | bridgetown-content-security-policy.gemspec |