mirror of
https://github.com/samsonjs/instapaper.git
synced 2026-03-25 08:55:49 +00:00
The simple_oauth gem had deprecation warnings with Ruby 3.4's URI module. Since we only use basic OAuth 1.0a HMAC-SHA1 signing, implemented a minimal OAuth module directly in the gem. This removes an external dependency and fixes the deprecation warnings. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
307 B
Ruby
21 lines
307 B
Ruby
source 'https://rubygems.org'
|
|
|
|
gem 'rake'
|
|
gem 'yard'
|
|
|
|
gem 'jruby-openssl', platforms: :jruby
|
|
gem 'json', platforms: :mri_19
|
|
|
|
group :development do
|
|
gem 'bundler'
|
|
gem 'kramdown'
|
|
end
|
|
|
|
group :test do
|
|
gem 'rspec', '~> 3'
|
|
gem 'rubocop', '>= 0.27'
|
|
gem 'simplecov'
|
|
gem 'webmock', '>= 1.22'
|
|
end
|
|
|
|
gemspec
|