method
parse_arguments

v5.0.0.1 -
Show latest stable
-
0 notes -
Class: Rails::DBConsole
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.8
- 3.2.13
- 4.0.2
- 4.1.8
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1 (0)
- 5.1.7
- 5.2.3
- 6.0.0
- 6.1.3.1
- 6.1.7.7
- 7.0.0
- 7.1.3.2
- 7.1.3.4
- What's this?
parse_arguments(arguments)
public
Hide source
# File railties/lib/rails/commands/dbconsole.rb, line 13 def parse_arguments(arguments) options = {} OptionParser.new do |opt| opt.banner = "Usage: rails dbconsole [environment] [options]" opt.on("-p", "--include-password", "Automatically provide the password from database.yml") do |v| options['include_password'] = true end opt.on("--mode [MODE]", ['html', 'list', 'line', 'column'], "Automatically put the sqlite3 database in the specified mode (html, list, line, column).") do |mode| options['mode'] = mode end opt.on("--header") do |h| options['header'] = h end opt.on("-h", "--help", "Show this help message.") do puts opt exit end opt.on("-e", "--environment=name", String, "Specifies the environment to run this console under (test/development/production).", "Default: development" ) { |v| options[:environment] = v.strip } opt.parse!(arguments) abort opt.to_s unless (0..1).include?(arguments.size) end set_options_env(arguments, options) end