-
Notifications
You must be signed in to change notification settings - Fork 64
/
permanent_records.gemspec
28 lines (24 loc) · 1 KB
/
permanent_records.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
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = 'permanent_records'
s.version = File.read('VERSION')
s.license = 'MIT'
s.authors = ['Jack Danger Canty', 'David Sulc', 'Joe Nelson',
'Trond Arve Nordheim', 'Josh Teneycke', 'Maximilian Herold',
'Hugh Evans', 'Sergey Gnuskov', 'aq', 'Joel AZEMAR']
s.summary = 'Soft-delete your ActiveRecord records'
s.description = <<-DESCRIPTION
Never Lose Data. Rather than deleting rows this sets Record#deleted_at and
gives you all the scopes you need to work with your data.
DESCRIPTION
s.email = '[email protected]'
s.extra_rdoc_files = %w[LICENSE README.md]
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
s.homepage = 'https://github.com/JackDanger/permanent_records'
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.7.8'
s.add_runtime_dependency 'activerecord', '>= 5.2'
s.add_runtime_dependency 'activesupport', '>= 5.2'
end