Sha256: 81842b1ca865c6e70444f9bc670bae93599503aa67fc2c48ff811fd000c434da

Contents?: true

Size: 1.05 KB

Versions: 1

Compression:

Stored size: 1.05 KB

Contents

# frozen_string_literal: true

require_relative "lib/rack/naked-to-www"

Gem::Specification.new "rack-naked-to-www" do |spec|
  spec.name = "rack-naked-to-www"
  spec.version = Rack::NakedToWww::VERSION
  spec.authors = ["motdotla"]
  spec.email = ["mot@mot.la"]

  spec.summary = "rack-naked-to-www"
  spec.description = "Redirect naked domain to www"
  spec.homepage = "https://github.com/dotenv-org/rack-naked-to-www"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 2.3.0"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/dotenv-org/rack-naked-to-www"
  spec.metadata["changelog_uri"] = "https://github.com/dotenv-org/rack-naked-to-www"

  spec.files = Dir.chdir(__dir__) do
    `git ls-files -z`.split("\x0").reject do |f|
      (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
    end
  end
  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "rack"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rack-naked-to-www-0.1.0 rack-naked-to-www.gemspec