diff options
author | Teddy Wing | 2017-04-29 21:48:32 +0200 |
---|---|---|
committer | Teddy Wing | 2017-04-29 21:48:32 +0200 |
commit | cf14e894685c695c7ecbaa2c119e2ea414afc00a (patch) | |
tree | 4227921dac8b3d62aae80896e30f395c525d8654 | |
parent | 9671489fcf3fbb47be047a86f1de9e95af6c8e81 (diff) | |
download | dbshell-rails-cf14e894685c695c7ecbaa2c119e2ea414afc00a.tar.bz2 |
dbshell.rake: Remove unnecessary comment
No longer have a use for this information as I've already leveraged in
the database client class implementations.
-rw-r--r-- | lib/dbshell/rails/tasks/dbshell.rake | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/dbshell/rails/tasks/dbshell.rake b/lib/dbshell/rails/tasks/dbshell.rake index 7b192c3..c901142 100644 --- a/lib/dbshell/rails/tasks/dbshell.rake +++ b/lib/dbshell/rails/tasks/dbshell.rake @@ -1,7 +1,6 @@ require 'dbshell/database_client' task :dbshell do -# {"default"=>{"adapter"=>"sqlite3", "pool"=>5, "timeout"=>5000}, "development"=>{"adapter"=>"sqlite3", "pool"=>5, "timeout"=>5000, "database"=>"db/development.sqlite3"}, "test"=>{"adapter"=>"sqlite3", "pool"=>5, "timeout"=>5000, "database"=>"db/test.sqlite3"}, "production"=>{"adapter"=>"sqlite3", "pool"=>5, "timeout"=>5000, "database"=>"db/production.sqlite3"}} env = ENV.fetch('RAILS_ENV', 'development') DBShell::DatabaseClient.runshell( |