Sha256: b82f90aba336b99deeb92e0887a0ee29a8dcf4c4c205d6f02b86199071f1139f
Contents?: true
Size: 1.07 KB
Versions: 3
Compression:
Stored size: 1.07 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.5.0" spec.add_dependency "bridgetown", ">= 0.18", "< 2.0" spec.add_development_dependency "bundler" spec.add_development_dependency "nokogiri", "~> 1.6" spec.add_development_dependency "rake", "~> 12.0" spec.add_development_dependency "rubocop-bridgetown", "~> 0.2" end
Version data entries
3 entries across 3 versions & 1 rubygems