-
Notifications
You must be signed in to change notification settings - Fork 11
/
activerecord_views.gemspec
27 lines (23 loc) · 1020 Bytes
/
activerecord_views.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'active_record_views/version'
Gem::Specification.new do |gem|
gem.name = 'activerecord_views'
gem.version = ActiveRecordViews::VERSION
gem.authors = ['Jason Weathered']
gem.email = ['[email protected]']
gem.summary = %q{Automatic database view creation for ActiveRecord}
gem.homepage = 'http://github.com/jasoncodes/activerecord_views'
gem.license = 'MIT'
gem.files = Dir['README*', 'lib/**/*']
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.add_dependency 'activerecord', ['>= 6.0', '< 8.1']
gem.add_development_dependency 'appraisal'
gem.add_development_dependency 'rspec-rails', '>= 2.14'
gem.add_development_dependency 'combustion', '>= 1.4.0'
gem.add_development_dependency 'pg'
gem.add_development_dependency 'warning'
end