Class: Breakfast::LocalEnvironment
- Inherits:
-
Object
- Object
- Breakfast::LocalEnvironment
- Defined in:
- lib/breakfast/railtie.rb
Instance Method Summary collapse
Instance Method Details
#running_server? ⇒ Boolean
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/breakfast/railtie.rb', line 54 def running_server? possible_servers = %w[ rails puma passenger unicorn mongrel webrick rainbows ] possible_servers.any? do |server| send "detect_#{server}" end end |