aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dbshell/rails/tasks/dbshell.rake
blob: cc898a47c1e68081ad7d1f158ef517dbe1564f26 (plain)
1
2
3
4
5
6
7
8
9
require 'dbshell/client/database'

task :dbshell do
  env = ENV.fetch('RAILS_ENV', 'development')

  DBShell::Client::Database.runshell(
    Rails.application.config.database_configuration[env]
  )
end