Sha256: 6398f323fe378180d644d710e816c5064c134cc28d79e38eb691200e32aa3a2f
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 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 = HSQL::VERSION spec.authors = ['Jack Danger Canty'] spec.email = ['gems@jackcanty.com'] spec.summary = 'Store a hash of data with your SQL queries.' spec.description = '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 = 'bin' spec.executables = ['hsql'] spec.require_paths = ['lib'] spec.add_dependency 'mustache', '> 0' # spec.add_dependency 'pg_query', '>= 0.6.2' spec.add_development_dependency 'bundler', '~> 1.10' spec.add_development_dependency 'rubocop', '~> 0.3' spec.add_development_dependency 'rake', '> 0' spec.add_development_dependency 'rspec', '~> 3.3' spec.add_development_dependency 'pry-byebug', '> 3' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hsql-0.2.1 | hsql.gemspec |