forked from ahoward/clee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclee.gemspec
More file actions
41 lines (33 loc) · 726 Bytes
/
clee.gemspec
File metadata and controls
41 lines (33 loc) · 726 Bytes
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
## clee.gemspec
#
Gem::Specification::new do |spec|
spec.name = "clee"
spec.version = "0.4.2"
spec.required_ruby_version = '>= 3.0'
spec.platform = Gem::Platform::RUBY
spec.summary = "clee #FIXME"
spec.description = "clee #FIXME..."
spec.license = "LicenseRef-LICENSE.md"
spec.files =
["LICENSE.md",
"README.md",
"Rakefile",
"TODO.md",
"a.rb",
"bin",
"bin/clee",
"clee.gemspec",
"docs",
"docs/sunwukong.md",
"lib",
"lib/clee",
"lib/clee.rb",
"lib/clee/_lib.rb",
"test"]
spec.executables = ["clee"]
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/clee"
end