Class: BackgrounDRb::Config
- Inherits:
-
Object
- Object
- BackgrounDRb::Config
- Defined in:
- lib/backgroundrb/bdrb_config.rb
Class Method Summary collapse
Class Method Details
.parse_cmd_options(argv) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/backgroundrb/bdrb_config.rb', line 5 def self.(argv) = { } OptionParser.new do |opts| script_name = File.basename($0) opts. = "Usage: #{$0} [options]" opts.separator "" opts.on("-e", "--environment=name", String, "Specifies the environment to operate under (test/development/production).", "Default: development") { |v| [:environment] = v } opts.separator "" opts.on("-h", "--help", "Show this help message.") { $stderr.puts opts; exit } opts.separator "" opts.on("-v","--version", "Show version.") { $stderr.puts "1.1"; exit } end.parse!(argv) ENV["RAILS_ENV"] = [:environment] if [:environment] end |
.read_config(config_file) ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/backgroundrb/bdrb_config.rb', line 26 def self.read_config(config_file) config = YAML.load(ERB.new(IO.read(config_file)).result) environment = ENV["RAILS_ENV"] || config[:backgroundrb][:environment] || "development" if respond_to?(:silence_warnings) silence_warnings do Object.const_set("RAILS_ENV",environment) end else Object.const_set("RAILS_ENV",environment) end ENV["RAILS_ENV"] = environment config end |