- Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsql_query.gemspec
More file actions
Latest commit
38 lines (32 loc) · 1.32 KB
/
Copy pathsql_query.gemspec
File metadata and controls
38 lines (32 loc) · 1.32 KB
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
# frozen_string_literal: true
lib=File.expand_path('lib',__dir__)
$LOAD_PATH.unshift(lib)unless $LOAD_PATH.include?(lib)
Gem::Specification.newdo |spec|
spec.name='sql_query'
spec.version='0.7.4'
spec.authors=['sufleR']
spec.email=['szymon.fracczak@gmail.com']
spec.summary='Ruby gem to load and execute SQL queries from `.sql.erb` templates'
spec.description="
It makes working with pure SQL easier with syntax highlighting.
Let's you clean your Ruby code from SQL strings.
"
spec.homepage='https://github.com/sufleR/sql_query'
spec.license='MIT'
spec.metadata={
'rubygems_mfa_required'=>'true'
}
spec.files=`git ls-files -z`.split("\x0")
spec.executables=spec.files.grep(%r{^bin/}){ |f| File.basename(f)}
spec.require_paths=['lib']
spec.required_ruby_version='>= 1.9.3'
spec.add_dependency'activerecord','>= 3.2'
spec.add_development_dependency'appraisal'
spec.add_development_dependency'bundler'
spec.add_development_dependency'pg','~> 1.5'
spec.add_development_dependency'rake','~> 13.0'
spec.add_development_dependency'rspec','~> 3.12'
spec.add_development_dependency'rubocop','~> 1.60'
spec.add_development_dependency'simplecov'
spec.add_development_dependency'with_model'
end