-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsql-from-file.gemspec
More file actions
24 lines (19 loc) · 913 Bytes
/
sql-from-file.gemspec
File metadata and controls
24 lines (19 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sql-from-file'
Gem::Specification.new do |gem|
gem.name = "sql-from-file"
gem.version = SQLFromFile::VERSION
gem.authors = ["Robert Borkowski"]
gem.email = ["robert.borkowski@forward3d.com"]
gem.description = %q{Simply load SQL from files}
gem.summary = %q{Allows loading SQL from exernal file if you need to}
gem.homepage = "https://github.com/robertino/sql-from-file"
gem.files = `git ls-files`.split($/)
gem.executables = [] #gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = [] #gem.files.grep(%r{^(test|spec|features)/})
# gem.test_files = `git grep test`.split(/\n/).map {|f| File.basename(f.split(':').first)}
gem.require_paths = ["lib"]
gem.license = 'MIT'
end