Class: Wagn::Application

Inherits:
Rails::Application
  • Object
show all
Defined in:
lib/wagn/application.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.inherited(base) ⇒ Object



23
24
25
26
27
28
# File 'lib/wagn/application.rb', line 23

def inherited base
  super
  Rails.app_class = base
  add_lib_to_load_path!(find_root(base.called_from))
  ActiveSupport.run_load_hooks(:before_configuration, base.instance)
end

Instance Method Details

#add_path(paths, path, options = {}) ⇒ Object



31
32
33
34
35
# File 'lib/wagn/application.rb', line 31

def add_path paths, path, options={}
  root = options.delete(:root) || Wagn.gem_root
  options[:with] = File.join(root, (options[:with] || path))
  paths.add path, options
end

#configObject



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/wagn/application.rb', line 37

def config
  @config ||= begin
    config = super

    Cardio.set_config config

    # any config settings below:
    # (a) do not apply to Card used outside of a Wagn context
    # (b) cannot be overridden in a deck's application.rb, but
    # (c) CAN be overridden in an environment file

    # therefore, in general, they should be restricted to settings that
    # (1) are specific to the web environment, and
    # (2) should not be overridden
    # ...and we should address (c) above!

    # general card settings (overridable and not) should be in cardio.rb
    # overridable wagn-specific settings don't have a place yet
    # but should probably follow the cardio pattern.

    config.i18n.enforce_available_locales = true
    # config.active_record.raise_in_transactional_callbacks = true

    config.assets.enabled = false
    config.assets.version = "1.0"

    config.filter_parameters += [:password]
    config
  end
end

#pathsObject



68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/wagn/application.rb', line 68

def paths
  @paths ||= begin
    paths = super
    Cardio.set_paths paths

    paths["mod"] << "mod"
    paths.add "files"

    paths["app/models"] = []
    paths["app/mailers"] = []

    unless paths["config/routes.rb"].existent.present?
      add_path paths, "config/routes.rb",
               with: "rails/application-routes.rb"
    end

    Cardio.set_mod_paths # really this should happen later

    paths
  end
end