Skip to content

Commit

Permalink
Merge branch 'master' of github.com:bebanjo/almodovar into requiremen…
Browse files Browse the repository at this point in the history
…ts-for-bond-1446
  • Loading branch information
Alcides Ramos committed Apr 26, 2023
2 parents 1776ee8 + ddecb10 commit f995142
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 24 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [ 2.3, 2.4 ]
ruby: [ 3.0.0, 2.6 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -16,6 +16,6 @@ jobs:

- name: Build and test with Rake
run: |
gem install bundler -v 1.17.3
gem install bundler -v 2.4.1
bundle install --jobs 4 --retry 3
bundle exec rake
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ gem 'webmock'
gem 'safe_yaml', '>= 1.0.4'
gem 'rdoc', '5.1.0'

gem 'activesupport', '>= 3.1.0'
gem 'nokogiri', '~> 1.10.8'
gem 'json', '>= 2.3.0'
gem 'activesupport', '>= 5.2.4'
gem 'nokogiri', '>= 1.12.0'
gem 'json', '>= 2.3.0'
38 changes: 22 additions & 16 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,40 +1,46 @@
PATH
remote: .
specs:
almodovar (1.8.0)
activesupport
almodovar (2.0.0)
activesupport (>= 5.2.4)
addressable (>= 2.3.6)
builder
httpclient (~> 2.5)
i18n
json
nokogiri (~> 1.10.4)
nokogiri (>= 1.12.0)
rexml (>= 3.2.5)

GEM
remote: https://rubygems.org/
specs:
activesupport (4.2.10)
i18n (~> 0.7)
activesupport (5.2.8.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
builder (3.2.3)
builder (3.2.4)
concurrent-ruby (1.2.2)
crack (0.4.3)
safe_yaml (~> 1.0.0)
diff-lcs (1.3)
hashdiff (1.0.1)
httpclient (2.8.3)
i18n (0.8.1)
i18n (1.12.0)
concurrent-ruby (~> 1.0)
json (2.5.1)
mini_portile2 (2.4.0)
minitest (5.10.3)
nokogiri (1.10.8)
mini_portile2 (~> 2.4.0)
mini_portile2 (2.6.1)
minitest (5.18.0)
nokogiri (1.12.5)
mini_portile2 (~> 2.6.1)
racc (~> 1.4)
public_suffix (4.0.3)
racc (1.6.2)
rake (13.0.1)
rdoc (5.1.0)
rexml (3.2.5)
rspec (3.9.0)
rspec-core (~> 3.9.0)
rspec-expectations (~> 3.9.0)
Expand All @@ -50,7 +56,7 @@ GEM
rspec-support (3.9.2)
safe_yaml (1.0.5)
thread_safe (0.3.6)
tzinfo (1.2.4)
tzinfo (1.2.11)
thread_safe (~> 0.1)
webmock (3.8.3)
addressable (>= 2.3.6)
Expand All @@ -61,15 +67,15 @@ PLATFORMS
ruby

DEPENDENCIES
activesupport (>= 3.1.0)
activesupport (>= 5.2.4)
almodovar!
json (>= 2.3.0)
nokogiri (~> 1.10.8)
nokogiri (>= 1.12.0)
rake
rdoc (= 5.1.0)
rspec
safe_yaml (>= 1.0.4)
webmock

BUNDLED WITH
1.17.3
2.1.4
6 changes: 6 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Almodovar Release History

## Version 2.0.0 (2023-04-25)

## Feature

* Update Nokogiri to v1.12 for Ruby 3 support [#79](https://github.com/bebanjo/almodovar/pull/79)

## Version 1.8.0 (2023-02-06)

## Feature
Expand Down
5 changes: 3 additions & 2 deletions almodovar.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ Gem::Specification.new do |s|
s.require_paths = ["lib"]

s.add_runtime_dependency("builder")
s.add_runtime_dependency("nokogiri", "~> 1.10.4")
s.add_runtime_dependency("activesupport")
s.add_runtime_dependency("nokogiri", ">= 1.12.0")
s.add_runtime_dependency("activesupport", ">= 5.2.4")
s.add_runtime_dependency("i18n")
s.add_runtime_dependency("httpclient", "~> 2.5")
s.add_runtime_dependency("addressable", ">= 2.3.6")
s.add_runtime_dependency("json")
s.add_runtime_dependency("rexml", ">= 3.2.5")
end
2 changes: 1 addition & 1 deletion lib/almodovar/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Almodovar
VERSION = '1.8.0'
VERSION = '2.0.0'
end

0 comments on commit f995142

Please sign in to comment.