Sha256: 8024c4196bb60aa2971a3ab5110349528f5c353a6595e71988712ddd228a3a13

Contents?: true

Size: 1 KB

Versions: 1

Compression:

Stored size: 1 KB

Contents

# 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 = 'github@jackcanty.com'
  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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
permanent_records-6.0.1 permanent_records.gemspec