memo_wise 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.dependabot/config.yml +13 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +4 -0
- data/.github/workflows/auto-approve-dependabot.yml +26 -0
- data/.github/workflows/main.yml +40 -0
- data/.github/workflows/remove-needs-qa.yml +35 -0
- data/.gitignore +12 -0
- data/.rspec +3 -0
- data/.rubocop.yml +2 -0
- data/.ruby-version +1 -0
- data/.yardopts +8 -0
- data/CHANGELOG.md +57 -0
- data/CODE_OF_CONDUCT.md +76 -0
- data/Gemfile +30 -0
- data/Gemfile.lock +111 -0
- data/LICENSE.txt +21 -0
- data/README.md +190 -0
- data/Rakefile +3 -0
- data/benchmarks/.ruby-version +1 -0
- data/benchmarks/Gemfile +17 -0
- data/benchmarks/Gemfile.lock +26 -0
- data/benchmarks/benchmarks.rb +240 -0
- data/bin/console +8 -0
- data/bin/setup +8 -0
- data/lib/memo_wise.rb +555 -0
- data/lib/memo_wise/version.rb +5 -0
- data/logo/logo.png +0 -0
- data/memo_wise.gemspec +37 -0
- metadata +76 -0
data/logo/logo.png
ADDED
Binary file
|
data/memo_wise.gemspec
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/memo_wise/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "memo_wise"
|
7
|
+
spec.version = MemoWise::VERSION
|
8
|
+
spec.summary = "The wise choice for Ruby memoization"
|
9
|
+
spec.homepage = "https://github.com/panorama-ed/memo_wise"
|
10
|
+
spec.license = "MIT"
|
11
|
+
|
12
|
+
spec.authors = [
|
13
|
+
"Panorama Education",
|
14
|
+
"Jacob Evelyn",
|
15
|
+
"Jemma Issroff",
|
16
|
+
"Marc Siegel",
|
17
|
+
]
|
18
|
+
|
19
|
+
spec.email = [
|
20
|
+
"engineering@panoramaed.com",
|
21
|
+
"jacobevelyn@gmail.com",
|
22
|
+
"jemmaissroff@gmail.com",
|
23
|
+
"marc@usainnov.com",
|
24
|
+
]
|
25
|
+
|
26
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
|
27
|
+
|
28
|
+
# Specify which files should be added to the gem when it is released.
|
29
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added
|
30
|
+
# into git.
|
31
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
32
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
33
|
+
f.match(%r{^(test|spec|features)/})
|
34
|
+
end
|
35
|
+
end
|
36
|
+
spec.require_paths = ["lib"]
|
37
|
+
end
|
metadata
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: memo_wise
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Panorama Education
|
8
|
+
- Jacob Evelyn
|
9
|
+
- Jemma Issroff
|
10
|
+
- Marc Siegel
|
11
|
+
autorequire:
|
12
|
+
bindir: bin
|
13
|
+
cert_chain: []
|
14
|
+
date: 2021-02-11 00:00:00.000000000 Z
|
15
|
+
dependencies: []
|
16
|
+
description:
|
17
|
+
email:
|
18
|
+
- engineering@panoramaed.com
|
19
|
+
- jacobevelyn@gmail.com
|
20
|
+
- jemmaissroff@gmail.com
|
21
|
+
- marc@usainnov.com
|
22
|
+
executables: []
|
23
|
+
extensions: []
|
24
|
+
extra_rdoc_files: []
|
25
|
+
files:
|
26
|
+
- ".dependabot/config.yml"
|
27
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
28
|
+
- ".github/workflows/auto-approve-dependabot.yml"
|
29
|
+
- ".github/workflows/main.yml"
|
30
|
+
- ".github/workflows/remove-needs-qa.yml"
|
31
|
+
- ".gitignore"
|
32
|
+
- ".rspec"
|
33
|
+
- ".rubocop.yml"
|
34
|
+
- ".ruby-version"
|
35
|
+
- ".yardopts"
|
36
|
+
- CHANGELOG.md
|
37
|
+
- CODE_OF_CONDUCT.md
|
38
|
+
- Gemfile
|
39
|
+
- Gemfile.lock
|
40
|
+
- LICENSE.txt
|
41
|
+
- README.md
|
42
|
+
- Rakefile
|
43
|
+
- benchmarks/.ruby-version
|
44
|
+
- benchmarks/Gemfile
|
45
|
+
- benchmarks/Gemfile.lock
|
46
|
+
- benchmarks/benchmarks.rb
|
47
|
+
- bin/console
|
48
|
+
- bin/setup
|
49
|
+
- lib/memo_wise.rb
|
50
|
+
- lib/memo_wise/version.rb
|
51
|
+
- logo/logo.png
|
52
|
+
- memo_wise.gemspec
|
53
|
+
homepage: https://github.com/panorama-ed/memo_wise
|
54
|
+
licenses:
|
55
|
+
- MIT
|
56
|
+
metadata: {}
|
57
|
+
post_install_message:
|
58
|
+
rdoc_options: []
|
59
|
+
require_paths:
|
60
|
+
- lib
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: 2.4.0
|
66
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
requirements: []
|
72
|
+
rubygems_version: 3.2.3
|
73
|
+
signing_key:
|
74
|
+
specification_version: 4
|
75
|
+
summary: The wise choice for Ruby memoization
|
76
|
+
test_files: []
|