-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodeling.gemspec
More file actions
21 lines (20 loc) · 948 Bytes
/
modeling.gemspec
File metadata and controls
21 lines (20 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require_relative "./lib/modeling/version"
Gem::Specification.new do |s|
s.name = "modeling"
s.version = Modeling::VERSION
s.summary = "A concise way to define the class shape"
s.description = <<~EOT
Adds the ability to quickly model classes. Definitions of instance variables and access methods are reduced to one line.
Creating an instance of the modeled class is significantly slower (~20x), so its use for classes whose instances are created frequently is not recommended.
EOT
s.authors = ["Łukasz Pomietło"]
s.email = "oficjalnyadreslukasza@gmail.com"
s.files = Dir.glob('lib/**/*')
s.homepage = "https://github.com/lpogic/modeling"
s.license = "Zlib"
s.required_ruby_version = ">= 3.2.2"
s.metadata = {
"documentation_uri" => "https://github.com/lpogic/modeling/blob/main/doc/wiki/README.md",
"homepage_uri" => "https://github.com/lpogic/modeling"
}
end