-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathmap.gemspec
More file actions
55 lines (47 loc) · 1.77 KB
/
Copy pathmap.gemspec
File metadata and controls
55 lines (47 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
## map.gemspec
#
Gem::Specification::new do |spec|
spec.name = "map"
spec.version = "8.0.0"
spec.required_ruby_version = '>= 3.0'
spec.platform = Gem::Platform::RUBY
spec.summary = "the perfect ruby data structure"
spec.description = "map.rb is a string/symbol indifferent ordered hash that works in all rubies.\n\nout of the over 200 ruby gems i have written, this is the one i use\nevery day, in all my projects.\n\nsome may be accustomed to using ActiveSupport::HashWithIndiffentAccess\nand, although there are some similarities, map.rb is more complete,\nworks without requiring a mountain of code, and has been in production\nusage for over 15 years.\n\nit has no dependencies, and suports a myriad of other, 'tree-ish'\noperators that will allow you to slice and dice data like a giraffee\nwith a giant weed whacker."
spec.license = "Ruby"
spec.files =
["LICENSE",
"README",
"README.md",
"Rakefile",
"images",
"images/giraffe.jpeg",
"images/map.png",
"lib",
"lib/map",
"lib/map.rb",
"lib/map/_lib.rb",
"lib/map/options.rb",
"lib/map/ordering.rb",
"map.gemspec",
"specs",
"specs/001-ordered-map-module",
"specs/001-ordered-map-module/checklists",
"specs/001-ordered-map-module/checklists/requirements.md",
"specs/001-ordered-map-module/data-model.md",
"specs/001-ordered-map-module/plan.md",
"specs/001-ordered-map-module/quickstart.md",
"specs/001-ordered-map-module/research.md",
"specs/001-ordered-map-module/spec.md",
"specs/001-ordered-map-module/tasks.md",
"test",
"test/leak.rb",
"test/lib",
"test/lib/testing.rb",
"test/map_test.rb"]
spec.executables = []
spec.require_path = "lib"
spec.extensions.push(*[])
spec.author = "Ara T. Howard"
spec.email = "ara.t.howard@gmail.com"
spec.homepage = "https://github.com/ahoward/map"
end