Commit 15bd651d9b872de5dbf050b49d9d43dd8640e8c4
1 parent
411383eb
Exists in
master
and in
18 other branches
Cleaned gemspec [skip ci]
Showing
1 changed file
with
8 additions
and
10 deletions
Show diff stats
searchkick.gemspec
1 | -# coding: utf-8 | |
1 | + | |
2 | 2 | lib = File.expand_path("../lib", __FILE__) |
3 | 3 | $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) |
4 | 4 | require "searchkick/version" |
... | ... | @@ -6,19 +6,17 @@ require "searchkick/version" |
6 | 6 | Gem::Specification.new do |spec| |
7 | 7 | spec.name = "searchkick" |
8 | 8 | spec.version = Searchkick::VERSION |
9 | - spec.authors = ["Andrew Kane"] | |
10 | - spec.email = ["andrew@chartkick.com"] | |
11 | - spec.description = "Intelligent search made easy" | |
12 | - spec.summary = "Searchkick learns what your users are looking for. As more people search, it gets smarter and the results get better. It’s friendly for developers - and magical for your users." | |
9 | + spec.summary = "Intelligent search made easy" | |
13 | 10 | spec.homepage = "https://github.com/ankane/searchkick" |
14 | 11 | spec.license = "MIT" |
15 | 12 | |
16 | - spec.files = `git ls-files`.split($/) | |
17 | - spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } | |
18 | - spec.test_files = spec.files.grep(%r{^(test|spec|features|benchmark)/}) | |
19 | - spec.require_paths = ["lib"] | |
13 | + spec.author = "Andrew Kane" | |
14 | + spec.email = "andrew@chartkick.com" | |
15 | + | |
16 | + spec.files = Dir["*.{md,txt}", "{lib}/**/*"] | |
17 | + spec.require_path = "lib" | |
20 | 18 | |
21 | - spec.required_ruby_version = ">= 2.2.0" | |
19 | + spec.required_ruby_version = ">= 2.2" | |
22 | 20 | |
23 | 21 | spec.add_dependency "activemodel", ">= 4.2" |
24 | 22 | spec.add_dependency "elasticsearch", ">= 5" | ... | ... |