main
1# frozen_string_literal: true
2
3require_relative "lib/straw/version"
4
5Gem::Specification.new do |spec|
6 spec.name = "straw"
7 spec.version = Straw::VERSION
8 spec.authors = ["mo khan"]
9 spec.email = ["mo@mokhan.ca"]
10
11 spec.summary = "You can build a lot of things with straw."
12 spec.description = "You can build a lot of things with straw."
13 spec.homepage = "https://github.com/xlg-pkg/straw"
14 spec.license = "MIT"
15 spec.required_ruby_version = ">= 3.0.0"
16
17 spec.metadata["changelog_uri"] = "https://github.com/xlg-pkg/straw"
18 spec.metadata["homepage_uri"] = spec.homepage
19 spec.metadata["rubygems_mfa_required"] = "true"
20 spec.metadata["source_code_uri"] = "https://github.com/xlg-pkg/straw"
21
22 spec.files = Dir.glob([
23 "*.gemspec",
24 "LICENSE.txt",
25 "README.md",
26 "lib/**/*.rb",
27 "sig/**/*.rbs",
28 ])
29
30 spec.bindir = "exe"
31 spec.executables = []
32 spec.require_paths = ["lib"]
33end