Skip to content

Commit

Permalink
newer versions of bundler dont work yet so return to working bundler …
Browse files Browse the repository at this point in the history
…version
  • Loading branch information
Largo committed Feb 14, 2024
1 parent dec412a commit 0bd9536
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ DEPENDENCIES
minitest (~> 5.18)

BUNDLED WITH
2.5.6
2.4.13
2 changes: 1 addition & 1 deletion bin/ocran
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,7 @@ EOF
end
rescue Exception => e
File.unlink(path) if File.exist?(path)
Ocran.fatal_error("Ocran building failed: #{e.message}")
Ocran.fatal_error("Ocran building failed: #{e.message} - #{e.backtrace}")
end

if Ocran.inno_script
Expand Down
2 changes: 1 addition & 1 deletion samples/many_gems/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

gem "tiny_tds", "~> 2.1"
#gem "tiny_tds", "~> 2.1"
gem "sqlite3", "~> 1.6"

gem 'tzinfo' if Gem.win_platform?
Expand Down
2 changes: 0 additions & 2 deletions samples/many_gems/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ GEM
time (0.2.2)
date
timeout (0.3.2)
tiny_tds (2.1.5)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
tzinfo-data (1.2023.3)
Expand Down Expand Up @@ -100,7 +99,6 @@ DEPENDENCIES
rufus-scheduler
sequel
sqlite3 (~> 1.6)
tiny_tds (~> 2.1)
tzinfo
tzinfo-data
win32-process (~> 0.9.0)
Expand Down
6 changes: 3 additions & 3 deletions samples/many_gems/manygems.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
require 'ruby-measurement'
require 'loofah'
require 'lumberjack'
require 'tiny_tds'
require 'tiny_tds/tiny_tds'
#require 'tiny_tds'
#require 'tiny_tds/tiny_tds'

# Your application code goes here
puts "All gems have been successfully loaded!"

# Example usage of some gems
puts TinyTds::VERSION
#puts TinyTds::VERSION
puts SQLite3::VERSION
puts TZInfo::VERSION if Gem.win_platform?
puts Rufus::Scheduler::VERSION
Expand Down

0 comments on commit 0bd9536

Please sign in to comment.