Sha256: 73d1d2d857c9f9fcad5b0caf52417d808d24959a98b5f10c65910a5f5814bce0
Contents?: true
Size: 978 Bytes
Versions: 1
Compression:
Stored size: 978 Bytes
Contents
$:.push File.expand_path("../lib", __FILE__) require "memoized/version" Gem::Specification.new do |s| s.name = "memoized" s.version = Memoized::VERSION s.authors = ["Barun Singh", "Henning Koch"] s.homepage = "https://github.com/makandra/memoized" s.summary = "Memoized caches the results of your method calls" s.description = s.summary s.metadata = { 'source_code_uri' => s.homepage, 'bug_tracker_uri' => 'https://github.com/makandra/memoized/issues', 'changelog_uri' => 'https://github.com/makandra/memoized/blob/master/CHANGELOG.md', 'rubygems_mfa_required' => 'true', } s.files = `git ls-files`.split("\n").reject { |path| File.lstat(path).symlink? } s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n").reject { |path| File.lstat(path).symlink? } s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.license = 'MIT' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
memoized-1.1.2 | memoized.gemspec |