File tree 4 files changed +40
-5
lines changed
4 files changed +40
-5
lines changed Original file line number Diff line number Diff line change 14
14
strategy :
15
15
fail-fast : false
16
16
matrix :
17
- rails : [ '6.1', '7.0' ]
17
+ rails : [ '6.1', '7.0', '7.1' ]
18
18
runs-on : ubuntu-latest
19
19
steps :
20
20
- uses : actions/checkout@v2
@@ -26,11 +26,11 @@ jobs:
26
26
sudo sysctl -w vm.max_map_count=262144
27
27
- uses : elastic/elastic-github-actions/elasticsearch@master
28
28
with :
29
- stack-version : 8.11.0 -SNAPSHOT
29
+ stack-version : 8.13 -SNAPSHOT
30
30
security-enabled : false
31
31
- uses : ruby/setup-ruby@v1
32
32
with :
33
- ruby-version : 3.0
33
+ ruby-version : 3.3
34
34
- name : Bundle
35
35
run : |
36
36
sudo apt-get install libsqlite3-dev
Original file line number Diff line number Diff line change
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+ # Usage:
19
+ #
20
+ # $ BUNDLE_GEMFILE=./gemfiles/7.0.gemfile bundle install
21
+ # $ BUNDLE_GEMFILE=./gemfiles/7.0.gemfile bundle exec rake test:integration
22
+
23
+ source 'https://rubygems.org'
24
+
25
+ gemspec path: '../'
26
+
27
+ gem 'activemodel', '~> 7.1'
28
+ gem 'activerecord', '~> 7.1'
29
+ gem 'sqlite3' unless defined?(JRUBY_VERSION)
30
+ # gem 'mongoid', '~> 6'
31
+
32
+ group :development, :testing do
33
+ gem 'debug'
34
+ gem 'pry-nav'
35
+ gem 'rspec'
36
+ end
Original file line number Diff line number Diff line change 17
17
18
18
module Elasticsearch
19
19
module Model
20
-
21
20
# Keeps a global registry of classes that include `Elasticsearch::Model`
22
21
#
23
22
class Registry
Original file line number Diff line number Diff line change 17
17
18
18
module Elasticsearch
19
19
module Model
20
- # Provides methods for getting and setting index name the model
20
+ # Provides methods for getting and setting index and name for the model
21
21
#
22
22
module Naming
23
23
module ClassMethods
You can’t perform that action at this time.
0 commit comments