Sha256: edae98ab8e4187487393cf1fec7d8d6415c90e5d80c9391b82d87c7de02bcdb2

Contents?: true

Size: 961 Bytes

Versions: 2

Compression:

Stored size: 961 Bytes

Contents

# frozen_string_literal: true

require_relative "lib/bundler/mac/version"

Gem::Specification.new do |spec|
  spec.name          = "bundler-mac"
  spec.version       = Bundler::Mac::VERSION
  spec.authors       = ["Andre Arko"]
  spec.email         = ["andre@arko.net"]

  spec.summary       = "exclude your bundle from Time Machine and Spotlight on macOS"
  spec.homepage      = "https://github.com/indirect/bundler-mac"
  spec.license       = "MIT"
  spec.required_ruby_version = ">= 2.5.0"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = spec.homepage
  spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bundler-mac-0.2.0 bundler-mac.gemspec
bundler-mac-0.1.0 bundler-mac.gemspec