-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gemspec: Add license and dependency bounds (#75)
This commit fixes some warnings that were being output by `gem build`.
- Loading branch information
1 parent
2d0377b
commit 6ab36aa
Showing
1 changed file
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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.' | ||
|
@@ -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' | ||
|
@@ -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 |