Sha256: 9b0c8b94b097a24da91c87212448732aa18956c819fde7902d63d4e542914221
Contents?: true
Size: 1.56 KB
Versions: 1
Compression:
Stored size: 1.56 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 to 3.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 "aws-sdk-core" 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 "http" spec.add_dependency "oj" spec.add_dependency "ruby2_keywords" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
search_flip-4.0.0.beta | search_flip.gemspec |