-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemporary_tables.gemspec
More file actions
24 lines (19 loc) · 908 Bytes
/
temporary_tables.gemspec
File metadata and controls
24 lines (19 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true
require_relative 'lib/temporary_tables/version'
Gem::Specification.new do |spec|
spec.name = 'temporary_tables'
spec.version = TemporaryTables::VERSION
spec.authors = ['Zeke Gabrielse']
spec.email = ['oss@keygen.sh']
spec.summary = 'Create temporary tables and models in RSpec tests.'
spec.description = 'Create temporary tables and models in Rspec tests.'
spec.homepage = 'https://github.com/keygen-sh/temporary_tables'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.1'
spec.files = %w[LICENSE CHANGELOG.md CONTRIBUTING.md SECURITY.md README.md] + Dir.glob('lib/**/*')
spec.require_paths = ['lib']
spec.add_dependency 'activerecord', '>= 6.0'
spec.add_development_dependency 'sqlite3', '~> 1.4'
spec.add_development_dependency 'mysql2'
spec.add_development_dependency 'pg'
end