Skip to content

Commit

Permalink
Merge pull request #15 from krists/permit-rubyzip-2
Browse files Browse the repository at this point in the history
Permit use of rubyzip version 2.x
  • Loading branch information
ebeigarts authored Nov 1, 2022
2 parents a1c7b39 + 57c3a54 commit 6ebff1a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 16 deletions.
8 changes: 1 addition & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,4 @@ source 'https://rubygems.org'
# Specify your gem's dependencies in saxlsx.gemspec
gemspec

gem 'caxlsx'
gem 'rubyXL'
gem 'simple_xlsx_reader'
gem 'creek'
gem 'oxcelix'
gem 'roo'
gem 'dullard'
gem "rubyzip", "~> 2.0"
2 changes: 1 addition & 1 deletion saxlsx.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 2.5.0'

spec.add_dependency 'rubyzip', '~> 1.0'
spec.add_dependency 'rubyzip', '>= 1.0'
spec.add_dependency 'ox', '~> 2.1'

spec.add_development_dependency 'bundler', ">= 1.5"
Expand Down
21 changes: 13 additions & 8 deletions spec/benchmarks.rb
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
# frozen_string_literal: true
require 'benchmark'
require 'axlsx'
require 'saxlsx'
require 'rubyXL'
require 'simple_xlsx_reader'
require 'creek'
require 'oxcelix'
require 'roo'
require 'dullard'
require 'bundler/inline'

gemfile do
source 'https://rubygems.org'
gem 'caxlsx'
gem 'rubyXL'
gem 'simple_xlsx_reader'
gem 'creek'
gem 'oxcelix'
gem 'roo'
gem 'dullard'
gem "saxlsx", path: File.expand_path("../..", __FILE__ )
end

module Saxlsx
class Benchmarks
Expand Down

0 comments on commit 6ebff1a

Please sign in to comment.