mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
ea9b34a953
* Add appraisal * Test CLI run (write pid, system boot, print banner) * Cleanup test helper * Set REDIS_URL to use non-default host in test env * Move mintiest-focus to test bundle group
9 lines
238 B
Ruby
9 lines
238 B
Ruby
appraise "rails-4" do
|
|
gem "rails", "~> 4.2"
|
|
gem 'activerecord-jdbcsqlite3-adapter', '< 50', platforms: :jruby
|
|
end
|
|
|
|
appraise "rails-5" do
|
|
gem "rails", "~> 5.2"
|
|
gem 'activerecord-jdbcsqlite3-adapter', '>= 50', platforms: :jruby
|
|
end
|