-
Notifications
You must be signed in to change notification settings - Fork 0
/
redaction.gemspec
29 lines (23 loc) · 1020 Bytes
/
redaction.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
require_relative "lib/redaction/version"
Gem::Specification.new do |spec|
spec.name = "redaction"
spec.version = Redaction::VERSION
spec.authors = ["Drew Bragg"]
spec.email = ["drbragg@hey.com"]
spec.homepage = "https://github.com/drbragg/redaction"
spec.summary = "Easily redact your ActiveRecord Models."
spec.description = "Easily redact your ActiveRecord Models."
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/drbragg/redaction/blob/main/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.required_ruby_version = ">= 2.5.0"
spec.add_dependency "rails", ">= 5.1.0"
spec.add_dependency "faker", ">= 2.20.0"
spec.add_dependency "ruby-progressbar", ">= 1.11.0"
spec.add_development_dependency "standard"
spec.add_development_dependency "appraisal"
end