Sha256: 286ef821a2612064464acbbebc0d9a84f3aa1f3f45c6a28b5d869d816156dec2
Contents?: true
Size: 1.51 KB
Versions: 3
Compression:
Stored size: 1.51 KB
Contents
lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "search_flip/version" Gem::Specification.new do |spec| spec.name = "search_flip" spec.version = SearchFlip::VERSION spec.authors = ["Benjamin Vetter"] spec.email = ["vetter@flakks.com"] spec.description = "Full-Featured Elasticsearch Ruby Client with a Chainable DSL" spec.summary = "Full-Featured Elasticsearch Ruby Client with a Chainable DSL" spec.homepage = "https://github.com/mrkamel/search_flip" spec.license = "MIT" spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.post_install_message = <<~MESSAGE Thanks for using search_flip! When upgrading from 1.x to 2.x, please check out https://github.com/mrkamel/search_flip/blob/master/UPDATING.md MESSAGE spec.add_development_dependency "activerecord", ">= 3.0" spec.add_development_dependency "bundler" spec.add_development_dependency "factory_bot" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" spec.add_development_dependency "rubocop" spec.add_development_dependency "sqlite3" spec.add_development_dependency "timecop" spec.add_development_dependency "webmock" spec.add_dependency "hashie" spec.add_dependency "http" spec.add_dependency "oj" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
search_flip-3.0.0.beta2 | search_flip.gemspec |
search_flip-3.0.0.beta1 | search_flip.gemspec |
search_flip-3.0.0.beta | search_flip.gemspec |