-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema2script.gemspec
32 lines (27 loc) · 1.23 KB
/
schema2script.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'schema2script/version'
Gem::Specification.new do |spec|
spec.name = "schema2script"
spec.version = Schema2Script::VERSION
spec.authors = ["Michele Tessaro"]
spec.email = ["[email protected]"]
spec.summary = %q{Tools for generation of DDL scripts from www.draw.io ER schemas}
spec.description = %q{Tools for generation of DDL scripts from www.draw.io ER schemas}
spec.homepage = "https://github.com/mikitex70/schema2script"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = "'http://mygemserver.com'"
end
spec.add_dependency 'thor'
spec.add_dependency 'nokogiri'
#spec.add_dependency 'uri'
spec.add_dependency 'chunky_png'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'rake'
end