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.
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module MemoWise
4
+ VERSION = "0.3.0"
5
+ end
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: []