tableless.gemspec
# frozen_string_literal: true
require_relative 'lib/tableless/version'
Gem::Specification.new do |spec|
spec.name = 'tableless'
spec.version = Tableless::VERSION
spec.authors = ['Jonian Guveli']
spec.email = ['jonian@hardpixel.eu']
spec.summary = 'ActiveRecord models without database tables'
spec.description = 'Create models that are not bound to the database and take advantage of the ActiveRecord features, such as validation, relationships, etc.'
spec.homepage = 'https://github.com/hardpixel/tableless'
spec.license = 'MIT'
spec.files = Dir['lib/**/*', '*.{md,txt}']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.6'
spec.add_dependency 'activerecord', '>= 6.0', '< 8.0'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'minitest', '~> 5.0'
spec.add_development_dependency 'rake', '~> 13.0'
end