Skip to content

Commit

Permalink
Merge pull request #12 from FusionAuth/jj/rollback-ruby-3
Browse files Browse the repository at this point in the history
roll back to ruby 2.7.5
  • Loading branch information
johnjeffers authored Apr 23, 2024
2 parents b85ab8f + cacdca0 commit ac12030
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.0
2.7.5
9 changes: 4 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@
# language governing permissions and limitations under the License.

source 'https://rubygems.org'
ruby '3.3.0'
ruby '2.7.5'

gem 'rake', '~> 13.2', '>= 13.2.1'
gem 'minitest', '~> 5.22', '>= 5.22.3'
gem 'minitest', '~> 5.22', '>= 5.22.3'
gem 'rake', '~> 13.2', '>= 13.2.1'
gem 'rdoc-markdown', '~> 0.4.2'

# Specify your gem's dependencies in fusionauth_client.gemspec
gemspec

gem 'rdoc-markdown', '~> 0.4.2'
17 changes: 9 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ GEM
erb (2.2.3)
cgi
extralite-bundle (1.27)
mini_portile2 (2.8.5)
minitest (5.22.3)
nokogiri (1.15.6)
mini_portile2 (~> 2.8.2)
nokogiri (1.15.6-aarch64-linux)
racc (~> 1.4)
nokogiri (1.15.6-arm64-darwin)
racc (~> 1.4)
nokogiri (1.15.6-x86_64-linux)
racc (~> 1.4)
psych (5.1.2)
stringio
Expand All @@ -33,9 +35,8 @@ GEM
unindent (1.0)

PLATFORMS
ruby
x86_64-darwin-19
x86_64-darwin-20
aarch64-linux
arm64-darwin-23
x86_64-linux

DEPENDENCIES
Expand All @@ -45,7 +46,7 @@ DEPENDENCIES
rdoc-markdown (~> 0.4.2)

RUBY VERSION
ruby 3.3.0p0
ruby 2.7.5p203

BUNDLED WITH
2.5.7
2.4.22
9 changes: 7 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
require 'minitest/test_task'
require "bundler/gem_tasks"
require "rake/testtask"

Minitest::TestTask.create
Rake::TestTask.new(:test) do |t|
t.libs << "test"
t.libs << "lib"
t.test_files = FileList['test/**/*test.rb']
end

task :default => :test

0 comments on commit ac12030

Please sign in to comment.