-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemoizer.gemspec
More file actions
21 lines (19 loc) · 981 Bytes
/
memoizer.gemspec
File metadata and controls
21 lines (19 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require 'rubygems' unless defined? Gem
require File.dirname(__FILE__) + "/lib/memoizer/version"
Gem::Specification.new do |s|
s.name = "memoizer"
s.version = Memoizer::VERSION
s.authors = ["Barun Singh"]
s.email = "bsingh@wegowise.com"
s.homepage = "https://github.com/wegowise/memoizer"
s.summary = "Memoizes (caches the results of) your methods"
s.description = "Memoizer caches the results of your method calls, works well with methods that accept arguments or return nil. It's a simpler and more expicit alternative to ActiveSupport::Memoizable"
s.required_rubygems_version = ">= 1.3.6"
s.files = Dir.glob(%w[{lib,spec}/**/*.rb [A-Z]*.{txt,rdoc,md} *.gemspec]) + %w{Rakefile}
s.extra_rdoc_files = ["README.md", "LICENSE.txt"]
s.license = 'MIT'
s.add_development_dependency('rake', '~> 13.0')
s.add_development_dependency('rspec', '~> 3.9')
s.add_development_dependency('timecop', '~> 0.9.1')
end