-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwipe_out.gemspec
47 lines (40 loc) · 1.92 KB
/
wipe_out.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
38
39
40
41
42
43
44
45
46
47
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
# Maintain your gem's version:
require "wipe_out/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "wipe_out"
s.version = WipeOut::VERSION
s.authors = ["Michał Foryś", "Piotr Król"]
s.email = %w[[email protected] [email protected]]
s.required_ruby_version = ">= 3.0.0"
s.summary = "Library for removing and clearing data in Rails ActiveRecord models."
s.description = "Library for removing and clearing data in Rails ActiveRecord models." \
" Allows to define data removal policy with its own, easy to understand, DSL."
s.license = "MIT"
s.homepage = "https://github.com/GlobalAppTesting/wipe_out"
s.metadata = {
"homepage_uri" => "https://github.com/GlobalAppTesting/wipe_out",
"changelog_uri" => "https://github.com/GlobalAppTesting/wipe_out/blob/main/CHANGELOG.md",
"source_code_uri" => "https://github.com/GlobalAppTesting/wipe_out",
"bug_tracker_uri" => "https://github.com/GlobalAppTesting/wipe_out/issues"
}
s.files =
Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
s.add_dependency("attr_extras", ">= 6.0", "< 8.0")
s.add_dependency("zeitwerk", ">= 2.4")
s.add_development_dependency("combustion", "~> 1.3")
s.add_development_dependency("factory_bot", "~> 6.2")
s.add_development_dependency("pry", "~> 0.14.1")
s.add_development_dependency("rails", "~> 6.1")
s.add_development_dependency("rspec", "~> 3.10")
s.add_development_dependency("simplecov", "~> 0.21.1")
s.add_development_dependency("sqlite3", "~> 1.4.2")
s.add_development_dependency("standard", "~> 1.24.0")
s.add_development_dependency("super_diff", "~> 0.6.2")
s.add_development_dependency("webrick")
s.add_development_dependency("yard", "~> 0.9")
end