Skip to content

Commit

Permalink
Update activesupport and json dependencies to fix test issues
Browse files Browse the repository at this point in the history
  • Loading branch information
veger committed Mar 25, 2024
1 parent c14e131 commit e586024
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
16 changes: 9 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,20 @@ PATH
GEM
remote: http://rubygems.org/
specs:
activesupport (6.1.7.6)
activesupport (6.1.7.7)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
ast (2.4.2)
concurrent-ruby (1.2.2)
concurrent-ruby (1.2.3)
docile (1.4.0)
i18n (1.14.1)
i18n (1.14.4)
concurrent-ruby (~> 1.0)
irb (1.0.0)
minitest (5.18.0)
json (2.7.1)
minitest (5.22.3)
mustermann (2.0.2)
ruby2_keywords (~> 0.0.1)
parser (2.7.2.0)
Expand Down Expand Up @@ -54,16 +55,17 @@ GEM
tilt (2.2.0)
tins (1.29.1)
sync
tzinfo (2.0.5)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
yard (0.9.34)
zeitwerk (2.6.11)
zeitwerk (2.6.13)

PLATFORMS
ruby
x86_64-linux

DEPENDENCIES
irb
json
minitest
rake
rdoc
Expand Down
1 change: 1 addition & 0 deletions ruby-bbcode.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Gem::Specification.new do |s|
s.extra_rdoc_files = ['README.md', 'CHANGELOG.md', 'MIT-LICENSE']

s.add_dependency 'activesupport', '>= 4.2.2'
s.add_development_dependency 'json'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'simplecov-lcov'
s.add_development_dependency 'irb'
Expand Down
2 changes: 1 addition & 1 deletion test/unit/configuration_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'test_helper'

class ConfigurationTest < MiniTest::Test
class ConfigurationTest < Minitest::Test
def before_setup
RubyBBCode.reset
end
Expand Down
2 changes: 1 addition & 1 deletion test/unit/tag_sifter_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'test_helper'

class TagSifterTest < MiniTest::Test
class TagSifterTest < Minitest::Test
include RubyBBCode::Tags
def test_youtube_parser
url1 = 'http://www.youtube.com/watch?v=E4Fbk52Mk1w'
Expand Down
2 changes: 1 addition & 1 deletion test/unit/tags_test.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'test_helper'

class TagSifterTest < MiniTest::Test
class TagSifterTest < Minitest::Test
def test_taglist_modification
tags = RubyBBCode::Tags.tag_list
assert_nil RubyBBCode::Tags.tag_list[:test]
Expand Down

0 comments on commit e586024

Please sign in to comment.