Sha256: afce0000a0b34da9e58253588111f919851729ae5744ac4c4ca50f6e7a4af90f
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'queryable_collection/version' Gem::Specification.new do |spec| spec.name = 'queryable_collection' spec.version = QueryableCollection::VERSION spec.authors = ['Akil Madan'] spec.email = ['support@travellink.com.au'] spec.summary = 'Allows the creation and querying of a collection of elements' spec.description = 'Allows the caller to define a queryable collection of ' \ 'elements and the attributes that can be used for querying. ' \ 'Provides the necessary methods to query the collection' spec.homepage = 'https://github.com/sealink/queryable_collection' 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.required_ruby_version = '>= 3.0' spec.add_dependency 'adamantium', '~> 0.2' spec.add_development_dependency 'bundler' spec.add_development_dependency 'coverage-kit' spec.add_development_dependency 'dotenv' spec.add_development_dependency 'pry-byebug' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec' spec.add_development_dependency 'rubocop' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
queryable_collection-0.4.0 | queryable_collection.gemspec |