Sha256: 5438d2ef9640f4f40552dec083f6bfe85c11bf4b1e6c287051fa4c12418798b5

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 KB

Contents

require_relative "lib/uses/version"

Gem::Specification.new do |spec|
  spec.name     = "uses"
  spec.version  = Uses::VERSION
  spec.authors  = ["Dave Copeland"]
  spec.email    = ["davec@naildrivin5.com"]
  spec.summary  = %q{Declare that one classes uses an instance of another to help your code be a bit more sustainable}
  spec.homepage = "https://github.com/sustainable-rails/uses"
  spec.license  = "Hippocratic"

  spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/sustainable-rails/uses"
  spec.metadata["changelog_uri"] = "https://github.com/sustainable-rails/uses/releases"

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

  spec.add_dependency("activesupport")
  spec.add_development_dependency("rspec")
  spec.add_development_dependency("rspec_junit_formatter")
  spec.add_development_dependency("confidence-check")
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
uses-1.0.0 uses.gemspec
uses-1.0.0.pre.beta1 uses.gemspec