-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathwith_model.gemspec
More file actions
24 lines (19 loc) · 862 Bytes
/
with_model.gemspec
File metadata and controls
24 lines (19 loc) · 862 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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
require "with_model/version"
Gem::Specification.new do |spec|
spec.name = "with_model"
spec.version = WithModel::VERSION
spec.authors = ["Case Commons, LLC", "Grant Hutchins", "Andrew Marshall"]
spec.email = %w[casecommons-dev@googlegroups.com gems@nertzy.com andrew@johnandrewmarshall.com]
spec.homepage = "https://github.com/Casecommons/with_model"
spec.summary = "Dynamically build a model within an RSpec context"
spec.description = spec.summary
spec.license = "MIT"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.2"
spec.add_dependency "activerecord", ">= 7.0"
end