elasticsearch-api.gemspec in elasticsearch-api-7.5.0 vs elasticsearch-api.gemspec in elasticsearch-api-7.6.0.pre
- old
+ new
@@ -6,75 +6,54 @@
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'elasticsearch/api/version'
Gem::Specification.new do |s|
- s.name = "elasticsearch-api"
+ s.name = 'elasticsearch-api'
s.version = Elasticsearch::API::VERSION
- s.authors = ["Karel Minarik"]
- s.email = ["karel.minarik@elasticsearch.org"]
- s.summary = "Ruby API for Elasticsearch."
- s.homepage = "https://github.com/elasticsearch/elasticsearch-ruby/tree/master/elasticsearch-api"
- s.license = "Apache-2.0"
+ s.authors = ['Karel Minarik']
+ s.email = ['karel.minarik@elasticsearch.org']
+ s.summary = 'Ruby API for Elasticsearch.'
+ s.homepage = 'https://github.com/elasticsearch/elasticsearch-ruby/tree/master/elasticsearch-api'
+ s.license = 'Apache-2.0'
s.files = `git ls-files`.split($/)
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
- s.require_paths = ["lib"]
+ s.require_paths = ['lib']
- s.extra_rdoc_files = [ "README.md", "LICENSE" ]
- s.rdoc_options = [ "--charset=UTF-8" ]
+ s.extra_rdoc_files = [ 'README.md', 'LICENSE' ]
+ s.rdoc_options = [ '--charset=UTF-8' ]
- s.required_ruby_version = '>= 1.9'
+ s.required_ruby_version = '>= 2.4'
- s.add_dependency "multi_json"
+ s.add_dependency 'multi_json'
- s.add_development_dependency "bundler"
+ s.add_development_dependency 'ansi'
+ s.add_development_dependency 'bundler'
+ s.add_development_dependency 'elasticsearch'
+ s.add_development_dependency 'elasticsearch-extensions'
+ s.add_development_dependency 'elasticsearch-transport'
+ s.add_development_dependency 'minitest'
+ s.add_development_dependency 'minitest-reporters'
+ s.add_development_dependency 'mocha'
+ s.add_development_dependency 'pry'
+ s.add_development_dependency 'rake', '~> 11.1'
+ s.add_development_dependency 'shoulda-context'
+ s.add_development_dependency 'yard'
- if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'
- s.add_development_dependency "rake", "~> 11.1"
- else
- s.add_development_dependency "rake", "< 11.0"
- end
-
- s.add_development_dependency "elasticsearch"
- s.add_development_dependency "elasticsearch-transport"
-
- if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'
- s.add_development_dependency "minitest"
- s.add_development_dependency "minitest-reporters"
- s.add_development_dependency "elasticsearch-extensions"
- end
-
- s.add_development_dependency "ansi"
- s.add_development_dependency "shoulda-context"
- s.add_development_dependency "mocha"
- s.add_development_dependency "yard"
- s.add_development_dependency "pry"
-
# Gems for testing integrations
- s.add_development_dependency "jsonify"
- s.add_development_dependency "hashie"
+ s.add_development_dependency 'jsonify'
+ s.add_development_dependency 'hashie'
- # Prevent unit test failures on Ruby 1.8
- if defined?(RUBY_VERSION) && RUBY_VERSION < '1.9'
- s.add_development_dependency "test-unit", '~> 2'
- s.add_development_dependency "json", '~> 1.8'
- end
-
- if defined?(RUBY_VERSION) && RUBY_VERSION > '1.9'
- s.add_development_dependency "ruby-prof" unless defined?(JRUBY_VERSION) || defined?(Rubinius)
- s.add_development_dependency "jbuilder"
- s.add_development_dependency "escape_utils" unless defined? JRUBY_VERSION
- s.add_development_dependency "simplecov", '~> 0.17', '< 0.18'
- s.add_development_dependency "simplecov-rcov"
- s.add_development_dependency "cane"
- s.add_development_dependency "require-prof" unless defined?(JRUBY_VERSION) || defined?(Rubinius)
- end
-
- if defined?(RUBY_VERSION) && RUBY_VERSION > '2.2'
- s.add_development_dependency "test-unit", '~> 2'
- end
+ s.add_development_dependency 'cane'
+ s.add_development_dependency 'escape_utils' unless defined? JRUBY_VERSION
+ s.add_development_dependency 'jbuilder'
+ s.add_development_dependency 'require-prof' unless defined?(JRUBY_VERSION) || defined?(Rubinius)
+ s.add_development_dependency 'simplecov', '~> 0.17', '< 0.18'
+ s.add_development_dependency 'simplecov-rcov'
+ s.add_development_dependency 'test-unit', '~> 2'
+ s.add_development_dependency 'ruby-prof' unless defined?(JRUBY_VERSION) || defined?(Rubinius)
s.description = <<-DESC.gsub(/^ /, '')
Ruby API for Elasticsearch. See the `elasticsearch` gem for full integration.
DESC
end