Sha256: 24e51ed8aa6f54f9d0f5f61cdc6b4d26f9fde27dc74f17c1e42566a011f307c5

Contents?: true

Size: 1.06 KB

Versions: 1

Compression:

Stored size: 1.06 KB

Contents

# frozen_string_literal: true

require_relative 'lib/with_last/version'

Gem::Specification.new do |spec|
  spec.name          = 'with_last'
  spec.version       = WithLast::VERSION
  spec.authors       = ['oieioi']
  spec.email         = ['atsuinatsu.samuifuyu@gmail.com']

  spec.summary       = 'Add `with_last` to Enumerator and `each_with_last` to Enumerable'
  spec.description   = 'Add `with_last` to Enumerator and `each_with_last` to Enumerable'
  spec.homepage      = 'https://github.com/oieioi/with_last.rb'
  spec.license       = 'MIT'
  spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')

  spec.metadata['homepage_uri'] = spec.homepage
  spec.metadata['source_code_uri'] = 'https://github.com/oieioi/with_last.rb'
  spec.metadata['changelog_uri'] = 'https://github.com/oieioi/with_last.rb/releases'
  spec.metadata['documentation_uri'] = 'https://www.rubydoc.info/gems/with_last'
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.require_paths = ['lib']
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
with_last-0.3.0 with_last.gemspec