paper-trail-gem--paper_trail/paper_trail.gemspec

70 lines
2.7 KiB
Ruby
Raw Normal View History

2017-12-11 04:05:11 +00:00
# frozen_string_literal: true
2018-03-27 22:32:52 +00:00
$LOAD_PATH.unshift File.expand_path("lib", __dir__)
require "paper_trail/compatibility"
require "paper_trail/version_number"
2009-05-27 17:31:20 +00:00
Gem::Specification.new do |s|
s.name = "paper_trail"
2016-12-30 16:47:50 +00:00
s.version = PaperTrail::VERSION::STRING
s.platform = Gem::Platform::RUBY
s.summary = "Track changes to your models."
s.description = <<-EOS
Track changes to your models, for auditing or versioning. See how a model looked
at any stage in its lifecycle, revert it to any version, or restore it after it
has been destroyed.
EOS
2018-05-09 11:25:56 +00:00
s.homepage = "https://github.com/paper-trail-gem/paper_trail"
2017-06-10 00:46:08 +00:00
s.authors = ["Andy Stewart", "Ben Atkins", "Jared Beck"]
2017-12-15 16:47:32 +00:00
s.email = "jared@jaredbeck.com"
s.license = "MIT"
2009-05-27 17:31:20 +00:00
s.files = `git ls-files -z`.split("\x0").select { |f|
f.match(%r{^(Gemfile|LICENSE|lib/|paper_trail.gemspec)})
}
s.executables = []
s.require_paths = ["lib"]
2010-10-15 11:53:33 +00:00
s.required_rubygems_version = ">= 1.3.6"
# Ruby 2.4 reaches EoL at the end of March of 2020
# https://www.ruby-lang.org/en/news/2019/10/02/ruby-2-4-9-released/
s.required_ruby_version = ">= 2.4.0"
2013-12-11 22:45:50 +00:00
# We no longer specify a maximum activerecord version.
# See discussion in paper_trail/compatibility.rb
s.add_dependency "activerecord", ::PaperTrail::Compatibility::ACTIVERECORD_GTE
s.add_dependency "request_store", "~> 1.1"
2011-02-08 17:16:35 +00:00
2017-10-17 22:14:16 +00:00
s.add_development_dependency "appraisal", "~> 2.2"
2019-08-06 04:50:41 +00:00
s.add_development_dependency "byebug", "~> 11.0"
2019-08-06 04:48:57 +00:00
s.add_development_dependency "ffaker", "~> 2.11"
2017-10-17 22:14:16 +00:00
s.add_development_dependency "generator_spec", "~> 0.9.4"
s.add_development_dependency "memory_profiler", "~> 0.9.14"
# For `spec/dummy_app`. Technically, we only need `actionpack` (as of 2020).
# However, that might change in the future, and the advantages of specifying a
# subset (e.g. actionpack only) are unclear.
s.add_development_dependency "rails", ::PaperTrail::Compatibility::ACTIVERECORD_GTE
2020-05-03 04:41:55 +00:00
s.add_development_dependency "rake", "~> 13.0"
2020-05-03 04:55:04 +00:00
s.add_development_dependency "rspec-rails", "~> 4.0"
2020-08-18 05:28:19 +00:00
s.add_development_dependency "rubocop", "~> 0.89.1"
s.add_development_dependency "rubocop-performance", "~> 1.7.1"
s.add_development_dependency "rubocop-rspec", "~> 1.42.0"
2019-10-21 17:22:58 +00:00
# ## Database Adapters
#
# The dependencies here must match the `gem` call at the top of their
# adapters, eg. `active_record/connection_adapters/mysql2_adapter.rb`,
# assuming said call is consistent for all versions of rails we test against
# (see `Appraisals`).
#
# Currently, all versions of rails we test against are consistent. In the past,
# when we tested against rails 4.2, we had to specify database adapters in
# `Appraisals`.
2019-10-21 17:45:18 +00:00
s.add_development_dependency "mysql2", "~> 0.5"
2019-10-21 17:22:58 +00:00
s.add_development_dependency "pg", ">= 0.18", "< 2.0"
s.add_development_dependency "sqlite3", "~> 1.4"
2009-05-27 17:31:20 +00:00
end