Skip to content

Commit

Permalink
Fix compat with Rails 7
Browse files Browse the repository at this point in the history
  • Loading branch information
phacks committed Mar 24, 2022
1 parent 5038099 commit 7859fe1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: .
specs:
notion-ruby-client (1.0.0.pre.beta1)
activesupport (~> 6)
activesupport (>= 6)
dotenv
faraday (>= 1.0)
faraday_middleware
Expand Down
4 changes: 2 additions & 2 deletions notion-ruby-client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |s|
s.homepage = 'http://github.com/orbit-love/notion-ruby-client'
s.licenses = ['MIT']
s.summary = 'Notion API client for Ruby.'
s.add_dependency 'activesupport', '~> 6'
s.add_dependency 'activesupport', '>= 6'
s.add_dependency 'dotenv'
s.add_dependency 'faraday', '>= 1.0'
s.add_dependency 'faraday_middleware'
Expand All @@ -28,4 +28,4 @@ Gem::Specification.new do |s|
s.add_development_dependency 'timecop'
s.add_development_dependency 'vcr'
s.add_development_dependency 'webmock'
end
end

0 comments on commit 7859fe1

Please sign in to comment.