Sha256: 21e1eb27723924647ea1a31fa95f9e49fadd81c799caaaf91581e8e1af33b6c3
Contents?: true
Size: 1.01 KB
Versions: 9
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'active_memoize/version' Gem::Specification.new do |spec| spec.name = 'active_memoize' spec.version = ActiveMemoize::VERSION spec.authors = ['Juan Gomez'] spec.email = ['j.gomez@drexed.com'] spec.summary = 'Gem for using a cache and memoization system.' spec.description = 'Cache and memoize expensive calculations.' spec.homepage = 'http://drexed.github.io/active_memoize' 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' spec.add_development_dependency 'fasterer' spec.add_development_dependency 'rake' spec.add_development_dependency 'reek' spec.add_development_dependency 'rspec' spec.add_development_dependency 'rubocop' end
Version data entries
9 entries across 9 versions & 1 rubygems