Sha256: 00111284b762a2516d13b758a5790ddbb4f3b517b11d5f115bb737c4a0b5a84d
Contents?: true
Size: 1.74 KB
Versions: 1
Compression:
Stored size: 1.74 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "data_mapper/sql_finders/version" Gem::Specification.new do |s| s.name = "sbf-dm-sql-finders" s.version = DataMapper::SQLFinders::VERSION s.authors = ['opensource_firespring'] s.email = ['opensource@firespring.com'] s.homepage = "https://github.com/d11wtq/dm-sql-finders" s.summary = %q{Query DataMapper models using raw SQL, without sacrificing property and table name abstraction} s.description = %q{dm-sql-finders add #by_sql to your DataMapper models and provides a clean mechanism for using the names of the properties in your model, instead of the actual fields in the database. Any SQL is supported and actual DataMapper Query objects wrap the SQL, thus delaying its execution until a kicker method materializes the records for the query. You can also chain standard DataMapper query methods onto the #by_sql call to refine the query.} s.license = 'Nonstandard' s.rubyforge_project = "dm-sql-finders" s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] DM_VERSION ||= "~> 1.3" s.add_runtime_dependency "sbf-dm-core", DM_VERSION s.add_runtime_dependency "sbf-dm-do-adapter", DM_VERSION s.add_development_dependency "rspec", "~> 3.13" s.add_development_dependency "sbf-dm-migrations", DM_VERSION s.add_development_dependency "sbf-dm-aggregates", DM_VERSION s.add_development_dependency "sbf-dm-sqlite-adapter", DM_VERSION end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sbf-dm-sql-finders-0.0.4 | dm-sql-finders.gemspec |