We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
File.exists?
1 parent 3bf01c8 commit b7706bbCopy full SHA for b7706bb
Gemfile
@@ -1,5 +1,7 @@
1
source "http://rubygems.org"
2
3
+git_source(:github) { |repo| "https://github.com/#{repo}.git" }
4
+
5
group :development do
6
gem "juwelier", "~> 2.0"
7
gem "rspec_junit_formatter"
@@ -19,6 +21,10 @@ group :test, :development do
19
21
end
20
22
23
platforms :ruby, :mswin, :mingw do
- gem "ruby-oci8", "~> 2.1"
24
+ if RUBY_VERSION >= "3.2"
25
+ gem "ruby-oci8", github: "kubo/ruby-oci8", branch: "master"
26
+ else
27
+ gem "ruby-oci8", "~> 2.1"
28
+ end
29
30
0 commit comments