Sha256: 805104acce07f494e4329b83b0bbe41b157dae1db26f86ac21563207ba8f926e
Contents?: true
Size: 1.03 KB
Versions: 12
Compression:
Stored size: 1.03 KB
Contents
require 'date' version_path = %w[../VERSION ../../VERSION].detect{|v| File.exist?(File.expand_path(v, __FILE__))} version = File.read(File.expand_path(version_path, __FILE__)).strip Gem::Specification.new do |s| s.name = 'elastics-scopes' s.summary = 'ActiveRecord-like chainable scopes and finders for Elastics.' s.description = 'Provides an easy to use ruby API to search elasticsearch with ActiveRecord-like chainable and mergeables scopes.' s.homepage = 'http://elastics.github.io/elastics' s.authors = ["Domizio Demichelis"] s.email = 'dd.nexus@gmail.com' s.files = `git ls-files -z`.split("\0") + %w[VERSION LICENSE] s.version = version s.date = Date.today.to_s s.required_rubygems_version = ">= 1.3.6" s.rdoc_options = %w[--charset=UTF-8] s.license = 'MIT' s.add_runtime_dependency 'elastics-client', version end
Version data entries
12 entries across 12 versions & 1 rubygems