Skip to content

Commit

Permalink
gemspec: Add license and dependency bounds (#75)
Browse files Browse the repository at this point in the history
This commit fixes some warnings that were being output by `gem build`.
  • Loading branch information
ethan-readyset authored Feb 1, 2024
1 parent 2d0377b commit 6ab36aa
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions readyset.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Gem::Specification.new do |spec|
spec.version = Readyset::VERSION
spec.authors = ['ReadySet Technology, Inc.']
spec.email = ['[email protected]']
spec.licenses = ['MIT']

spec.summary = 'A Rails adapter for ReadySet, a partially-stateful, incrementally-maintained ' \
'SQL cache.'
Expand All @@ -31,9 +32,9 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_dependency 'actionpack', '>= 6.1'
spec.add_dependency 'activerecord', '>= 6.1'
spec.add_dependency 'activesupport', '>= 6.1'
spec.add_dependency 'actionpack', ['>= 6.1', '<= 7.1']
spec.add_dependency 'activerecord', ['>= 6.1', '<= 7.1']
spec.add_dependency 'activesupport', ['>= 6.1', '<= 7.1']
spec.add_dependency 'colorize', '~> 1.1'
spec.add_dependency 'concurrent-ruby', '~> 1.2'
spec.add_dependency 'progressbar', '~> 1.13'
Expand All @@ -43,9 +44,9 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'combustion', '~> 1.3'
spec.add_development_dependency 'factory_bot', '~> 6.4'
spec.add_development_dependency 'pg', '~> 1.5'
spec.add_development_dependency 'pry'
spec.add_development_dependency 'pry', '~> 0.14'
spec.add_development_dependency 'rspec', '~> 3.2'
spec.add_development_dependency 'rspec-rails', '~> 6.0'
spec.add_development_dependency 'rubocop-airbnb'
spec.add_development_dependency 'rubocop-airbnb', '~> 6.0'
spec.add_development_dependency 'timecop', '~> 0.9'
end

0 comments on commit 6ab36aa

Please sign in to comment.