-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatusable.gemspec
More file actions
37 lines (29 loc) · 1.27 KB
/
statusable.gemspec
File metadata and controls
37 lines (29 loc) · 1.27 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
# frozen_string_literal: true
require_relative "lib/statusable/version"
Gem::Specification.new do |spec|
spec.name = "statusable"
spec.version = Statusable::VERSION
spec.authors = ["Paul DobbinSchmaltz"]
spec.email = ["p.dobbinschmaltz@icloud.com"]
spec.summary = "Adds a `has_statuses` macro for defining common status-related ActiveRecord / Relation methods."
spec.description = "Statusable adds a `has_statuses` macro for defining common status-related methods for use with ActiveRecord objects / Relations."
spec.homepage = "https://github.com/pdobb/statusable"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/pdobb/statusable/issues",
"changelog_uri" => "https://github.com/pdobb/statusable/releases",
"source_code_uri" => "https://github.com/pdobb/statusable",
"homepage_uri" => spec.homepage,
"rubygems_mfa_required" => "true",
}
spec.files =
Dir.chdir(File.expand_path(__dir__)) {
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
}
spec.add_dependency "rails", ">= 6"
spec.add_development_dependency "gemwork"
# Dummy Rails app dependencies.
spec.add_development_dependency "puma"
spec.add_development_dependency "sqlite3"
end