-
Notifications
You must be signed in to change notification settings - Fork 0
/
write_once.gemspec
37 lines (30 loc) · 1.39 KB
/
write_once.gemspec
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/write_once/version"
Gem::Specification.new do |spec|
spec.name = "write_once"
spec.version = WriteOnce::VERSION
spec.authors = ["Braden Staudacher"]
spec.email = ["[email protected]"]
spec.summary = "WriteOnce allows you to guard against multiple write on active record models."
spec.description = "WriteOnce can be useful for attributes you don't set during creation, but want to prevent overwrites to."
spec.homepage = "https://github.com/1debit/write_once"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/1debit/write_once"
spec.metadata["changelog_uri"] = "https://github.com/1debit/write_once/changelog.md"
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(File.expand_path(f) == __FILE__) ||
f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
end
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
# spec.add_dependency "rails", "~> 7.0"
spec.add_development_dependency "activerecord", "~> 7.1.2"
spec.add_development_dependency "appraisal", "~> 2.5.0"
spec.add_development_dependency "debug"
spec.add_development_dependency "sqlite3"
end