Sha256: d417322446d47acd5b2a6772b009386316f59bcc22795186a5738ac223e8929c
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'collection_of/version' Gem::Specification.new do |spec| spec.name = 'collection_of' spec.version = CollectionOf::VERSION spec.authors = ['Daniel Vandersluis'] spec.email = ['dvandersluis@selfmgmt.com'] spec.description = %q{Ruby object for ease of collecting a certain type} spec.summary = %q{Allows a collection of a given type of object to be worked with easily} spec.homepage = 'https://github.com/dvandersluis/collection_of' spec.license = 'MIT' spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = %w(lib) spec.add_dependency 'active_support', '>= 3.0.0' spec.add_development_dependency 'bundler', '~> 1.3' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
collection_of-1.0.0 | collection_of.gemspec |