Sha256: acd1008a337f300eb2563ba4c3e51bfa7b4b646d35edc482e7e6fe75c3feabe9

Contents?: true

Size: 496 Bytes

Versions: 5

Compression:

Stored size: 496 Bytes

Contents

module Mack # :nodoc:
  module Paths
    
    # The path to the app/notifiers directory.
    def self.notifiers(*args)
      File.join(Mack.root, "app", "notifiers", args)
    end
    
    # The path to the app/notifiers/templates directory.
    def self.notifier_templates(*args)
      Mack::Paths.notifiers("templates", args)
    end
    
    # The path the test/notifiers directory
    def self.notifier_tests(*args)
      File.join(Mack.root, "test", "notifiers", args)
    end
    
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
mack-notifier-0.6.1 lib/mack-notifier/paths.rb
mack-notifier-0.6.1.1 lib/mack-notifier/paths.rb
mack-notifier-0.6.1.2 lib/mack-notifier/paths.rb
mack-notifier-0.7.0 lib/mack-notifier/paths.rb
mack-notifier-0.7.0.1 lib/mack-notifier/paths.rb