Skip to content

Commit

Permalink
Merge pull request #2164 from yahonda/diag2163
Browse files Browse the repository at this point in the history
Prevent from including ojdbc8.jar file to gem file
  • Loading branch information
koic authored Apr 1, 2021
2 parents 218161a + 5ad924c commit 0716281
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion activerecord-oracle_enhanced-adapter.gemspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# frozen_string_literal: true

require "rake"

version = File.read(File.expand_path("../VERSION", __FILE__)).strip

Gem::Specification.new do |s|
Expand All @@ -17,7 +19,7 @@ This adapter is superset of original ActiveRecord Oracle adapter.
s.extra_rdoc_files = [
"README.md"
]
s.files = Dir["History.md", "License.txt", "README.md", "VERSION", "lib/**/*"]
s.files = FileList["History.md", "License.txt", "README.md", "VERSION", "lib/**/*"].exclude("lib/ojdbc*.jar")
s.homepage = "http://github.com/rsim/oracle-enhanced"
s.require_paths = ["lib"]
s.summary = "Oracle enhanced adapter for ActiveRecord"
Expand Down

0 comments on commit 0716281

Please sign in to comment.