Skip to content
Merged
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
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
bundler-cache: false

- name: Install gems
run: bundle install --jobs 4 --retry 3

- name: Run the default task
run: bundle exec rake
12 changes: 6 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
PATH
remote: .
specs:
llm_eval_ruby (0.3.0)
httparty (~> 0.22.0)
llm_eval_ruby (0.3.2)
httparty (~> 0.24.0)
liquid (~> 5.5.0)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.3)
bigdecimal (3.3.1)
bigdecimal (4.0.1)
csv (3.3.5)
diff-lcs (1.6.2)
httparty (0.22.0)
httparty (0.24.2)
csv
mini_mime (>= 1.0.0)
multi_xml (>= 0.5.2)
Expand All @@ -21,8 +21,8 @@ GEM
lint_roller (1.1.0)
liquid (5.5.1)
mini_mime (1.1.5)
multi_xml (0.7.2)
bigdecimal (~> 3.1)
multi_xml (0.8.1)
bigdecimal (>= 3.1, < 5)
parallel (1.27.0)
parser (3.3.10.0)
ast (~> 2.4.1)
Expand Down
2 changes: 1 addition & 1 deletion lib/llm_eval_ruby/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module LlmEvalRuby
VERSION = "0.3.1"
VERSION = "0.3.2"
end
2 changes: 1 addition & 1 deletion llm_eval_ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Gem::Specification.new do |spec|

# Uncomment to register a new dependency of your gem
# spec.add_dependency "example-gem", "~> 1.0"
spec.add_dependency "httparty", "~> 0.22.0"
spec.add_dependency "httparty", "~> 0.24.0"
spec.add_dependency "liquid", "~> 5.5.0"

# For more information and examples about making a new gem, check out our
Expand Down