Sha256: 6f128cbf13e776689c56def1195241115aa75e911fd8a4d9291adc18b16bde35
Contents?: true
Size: 1.17 KB
Versions: 9
Compression:
Stored size: 1.17 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'linked/version' Gem::Specification.new do |spec| spec.name = "linked" spec.version = Linked::VERSION spec.authors = ["Sebastian Lindberg"] spec.email = ["seb.lindberg@gmail.com"] spec.summary = %q{Yet another linked list implementation in Ruby.} spec.description = %q{Yes, there are a lot of linked list implementaions out there but I wrote my own all the same. This library is ment to be subclassed/included by other objects that that behave like linked lists.} spec.homepage = "https://github.com/seblindberg/ruby-linked" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.12" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest", "~> 5.0" spec.add_development_dependency "coveralls", "~> 0.8" end
Version data entries
9 entries across 9 versions & 1 rubygems