forked from meilisearch/meilisearch-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeilisearch-rails.gemspec
More file actions
38 lines (29 loc) · 884 Bytes
/
meilisearch-rails.gemspec
File metadata and controls
38 lines (29 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'meilisearch/rails/version'
Gem::Specification.new do |s|
s.name = 'meilisearch-rails'
s.version = MeiliSearch::Rails::VERSION
s.authors = ['Meili']
s.email = 'bonjour@meilisearch.com'
s.description = 'Meilisearch integration for Ruby on Rails. See https://github.com/meilisearch/meilisearch'
s.homepage = 'https://github.com/meilisearch/meilisearch-rails'
s.summary = 'Meilisearch integration for Ruby on Rails.'
s.licenses = 'MIT'
s.require_paths = ['lib']
s.extra_rdoc_files = [
'LICENSE',
'README.md'
]
s.files = Dir[
'lib/**/*',
'.rspec',
'meilisearch-rails.gemspec',
'Gemfile',
'LICENSE',
'README.md',
'Rakefile'
]
s.required_ruby_version = '>= 2.6.0'
s.add_dependency 'meilisearch', '~> 0.26.0'
end