-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
sqlint.gemspec
43 lines (39 loc) · 1.12 KB
/
sqlint.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# encoding: utf-8
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'sqlint'
require 'English'
Gem::Specification.new do |s|
s.name = 'sqlint'
s.version = SQLint::VERSION
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 3.0'
s.authors = ['Steve Purcell', 'Kieran Trezona-le Comte']
s.description = <<-EOF
Simple SQL linter.
EOF
s.email = '[email protected]'
s.files = `git ls-files`.split($RS).reject do |file|
file =~ %r{^(?:
spec/.*
|Gemfile
|Rakefile
|\.rspec
|\.ruby-version
|\.rbenv-gemsets
|\.gitignore
|\.travis.yml
)$}x
end
s.test_files = []
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.extra_rdoc_files = ['LICENSE.txt', 'README.md']
s.homepage = 'https://github.com/purcell/sqlint'
s.licenses = ['MIT']
s.require_paths = ['lib']
s.rubygems_version = '1.8.23'
s.summary = 'Simple SQL linter.'
s.add_runtime_dependency('pg_query', '>= 1')
s.add_development_dependency('rake', '>= 12.3.3')
s.add_development_dependency('rspec', '~> 3.2')
s.add_development_dependency('bundler', '>= 2.2.33')
end