Created
March 21, 2013 18:01
-
-
Save johndel/5215194 to your computer and use it in GitHub Desktop.
gsadmin/lib/gsadmin.rb for understanding configuration variables from file gsadmin.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "gsadmin/engine" | |
require "rails" | |
module Gsadmin | |
class Engine < Rails::Engine | |
end | |
def self.config(&block) | |
yield Engine.config if block | |
Engine.config | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment