forked from craigulliott/dsl_compose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdsl_compose.gemspec
More file actions
22 lines (16 loc) · 908 Bytes
/
dsl_compose.gemspec
File metadata and controls
22 lines (16 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true
require_relative "lib/dsl_compose/version"
Gem::Specification.new do |spec|
spec.name = "dsl_compose"
spec.version = DSLCompose::VERSION
spec.authors = ["Craig Ulliott"]
spec.email = ["craigulliott@gmail.com"]
spec.summary = "Ruby gem to add dynamic DSLs to classes"
spec.description = "Ruby gem to add dynamic DSLs to classes. DSLs are added to classes by including the DSLCompose module, and then calling the add_dsl singleton method within the class or a child class."
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata["source_code_uri"] = "https://github.com/craigulliott/dsl_compose/"
spec.metadata["changelog_uri"] = "https://github.com/craigulliott/dsl_compose/blob/main/CHANGELOG.md"
spec.files = ["README.md", "LICENSE.txt", "CHANGELOG.md", "CODE_OF_CONDUCT.md"] + Dir["lib/**/*"]
spec.require_paths = ["lib"]
end