Sha256: a0c0e7cb24661257302ed66c070b60ca42802a75b5410ac2e8935856b3b0cb3c
Contents?: true
Size: 1006 Bytes
Versions: 1
Compression:
Stored size: 1006 Bytes
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.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.2.0 | with_last.gemspec |