Sha256: cf92da30d11c2fff8b6f2df88c7dcf031641441350179e51c410e66d953e2f37
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'hsql/version' Gem::Specification.new do |spec| spec.name = "hsql" spec.version = Setl::VERSION spec.authors = ["Jack Danger Canty"] spec.email = ["gems@jackcanty.com"] spec.summary = %q{Store a hash of data with your SQL queries.} spec.description = %q{Write SQL queries in a .sql format and ship them with metadata about how they should be executed} spec.homepage = "https://github.com/JackDanger/hsql" 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"] spec.add_dependency "mustache", '~> 0' spec.add_development_dependency "bundler", "~> 1.10" spec.add_development_dependency "rake", '~> 0' spec.add_development_dependency "rspec", '~> 0' spec.add_development_dependency "pry-byebug", '~> 0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hsql-0.1.0 | hsql.gemspec |