mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
![Sam](/assets/img/avatar_default.png)
* Add coverage for helpers.rb * Add simplecov to git actions * Test simplecov * Changed this to run on all pull requests, not just main and 7-0 * Fix yaml spacing * Create simplecov file and pointer for file * Add empty hash to json file * See if we need simplecov gem enabled * Update coverage file * Add in covered_percent * Move simplecov_file out * Remove token * Add token back in * Remove unnecessary code * Add comment for running simplecov in the rake file * Fix typo in spec file * Remove references to codecov, add minimum requirement of 90% to simplecov
33 lines
547 B
Ruby
33 lines
547 B
Ruby
source "https://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
gem "rake"
|
|
gem "rails"
|
|
gem "redis-client"
|
|
|
|
# Required for Ruby 3.1
|
|
# https://github.com/mikel/mail/pull/1439
|
|
gem "net-smtp"
|
|
gem "net-imap"
|
|
gem "net-pop"
|
|
|
|
gem "sqlite3", platforms: :ruby
|
|
gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby
|
|
gem "after_commit_everywhere"
|
|
gem "yard"
|
|
|
|
group :test do
|
|
gem "minitest"
|
|
# gem "simplecov"
|
|
end
|
|
|
|
group :development, :test do
|
|
gem "standard", require: false
|
|
# gem "pry"
|
|
# gem "yalphabetize", require: false
|
|
end
|
|
|
|
group :load_test do
|
|
# gem "toxiproxy"
|
|
end
|