forked from ActsAsParanoid/acts_as_paranoid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacts_as_paranoid.gemspec
28 lines (24 loc) · 1.15 KB
/
acts_as_paranoid.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'acts_as_paranoid/version'
Gem::Specification.new do |spec|
spec.name = "acts_as_paranoid"
spec.version = ActsAsParanoid::VERSION
spec.authors = ["Zachary Scott", "Goncalo Silva", "Rick Olson"]
spec.email = ["[email protected]"]
spec.summary = "Active Record plugin which allows you to hide and restore records without actually deleting them."
spec.description = "Check the home page for more in-depth information."
spec.homepage = "https://github.com/ActsAsParanoid/acts_as_paranoid"
spec.license = "MIT"
spec.files = Dir["{lib}/**/*.rb", "LICENSE", "*.md"]
spec.test_files = Dir["test/*.rb"]
spec.require_paths = ["lib"]
spec.add_dependency "activerecord", ">= 4.2", "< 7.0"
spec.add_dependency "activesupport", ">= 4.2", "< 7.0"
spec.add_development_dependency "bundler", ">= 1.5", "< 3.0"
spec.add_development_dependency "rake"
spec.add_development_dependency "rdoc"
spec.add_development_dependency "minitest", ">= 4.0", "<= 6.0"
spec.add_development_dependency "pry"
end