Skip to content
This repository was archived by the owner on Jul 24, 2025. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ workflows:
matrix:
parameters:
ruby_version:
- 3.3.0
- 3.1.4
elasticsearch_version:
- 7.17.7
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ARG RUBY_VERSION=3.1.4

FROM public.ecr.aws/docker/library/ruby:$RUBY_VERSION-slim as base

WORKDIR /rails
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM ruby:3.1.4

WORKDIR /usr/src/app
EXPOSE 3300

Expand Down
1 change: 1 addition & 0 deletions app/queries/terms_filter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ def query_body
builder = Jbuilder.new do |json|
filtered_query(json)
end

builder.attributes!
end

Expand Down
1 change: 0 additions & 1 deletion lib/feedjira/parser/oasis/mrss.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class Mrss
element :title
element :link
element :description

elements :item, as: :entries, class: Oasis::MrssEntry

attr_accessor :feed_url
Expand Down