Sha256: b925fe227f28c0720a096c31a005b061b460cf53efa67d1b75673c559b834da8

Contents?: true

Size: 977 Bytes

Versions: 1

Compression:

Stored size: 977 Bytes

Contents

# frozen_string_literal: true

require_relative 'lib/simple_annotation/version'

Gem::Specification.new do |spec|
  spec.name          = 'simple_annotation'
  spec.version       = SimpleAnnotation::VERSION
  spec.authors       = ['Tomohiro Nishimura']
  spec.email         = ['tomohiro68@gmail.com']

  spec.summary       = 'Annotate method with anything.'
  spec.description   = 'Annotate method with anything. symbol, string and so on.'
  spec.homepage      = 'https://github.com/Sixeight/simple_annotation'
  spec.license       = 'MIT'
  spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')

  spec.metadata['homepage_uri'] = spec.homepage
  spec.metadata['source_code_uri'] = spec.homepage
  spec.metadata['changelog_uri'] = format('%s/blob/master/CHANGELOG.md', spec.homepage)

  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.require_paths = ['lib']
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
simple_annotation-0.1.1 simple_annotation.gemspec