|
28 | 28 | (eval-when-compile
|
29 | 29 | (require 'rails-lib))
|
30 | 30 |
|
31 |
| -(defvar rails-core:class-dirs |
| 31 | +(defcustom rails-core:class-dirs |
32 | 32 | '("app/controllers"
|
33 | 33 | "app/views"
|
34 | 34 | "app/models"
|
35 | 35 | "app/helpers"
|
36 | 36 | "test/unit"
|
37 | 37 | "test/functional"
|
38 |
| - "test/fixtures" |
39 | 38 | "spec/controllers"
|
40 | 39 | "spec/fixtures"
|
41 | 40 | "spec/lib"
|
42 | 41 | "spec/models"
|
43 | 42 | "lib")
|
44 |
| - "Directories with Rails classes") |
| 43 | + "Directories with Rails classes" |
| 44 | + :group 'rails |
| 45 | + :type '(repeat string)) |
45 | 46 |
|
46 | 47 | (defun rails-core:class-by-file (filename)
|
47 | 48 | "Return the class associated with FILENAME.
|
@@ -135,11 +136,11 @@ it does not exist, ask to create it using QUESTION as a prompt."
|
135 | 136 | (defun rails-core:controller-file (controller-name)
|
136 | 137 | "Return the path to the controller CONTROLLER-NAME."
|
137 | 138 | (when controller-name
|
138 |
| - (concat "app/controllers/" |
139 |
| - (rails-core:file-by-class |
140 |
| - (rails-core:short-controller-name controller-name) t) |
141 |
| - (unless (string-equal controller-name "Application") "_controller") |
142 |
| - ".rb"))) |
| 139 | + (let* ((basename (rails-core:file-by-class (rails-core:short-controller-name controller-name) t)) |
| 140 | + (exact (concat "app/controllers/" basename ".rb"))) |
| 141 | + (if (file-exists-p (rails-core:file exact)) |
| 142 | + exact |
| 143 | + (concat "app/controllers/" basename "_controller.rb"))))) |
143 | 144 |
|
144 | 145 | (defun rails-core:controller-exist-p (controller-name)
|
145 | 146 | "Return t if controller CONTROLLER-NAME exist."
|
@@ -624,6 +625,12 @@ If the action is nil, return all views for the controller."
|
624 | 625 | (when (search-backward-regexp "^[ ]*def \\([a-z0-9_]+\\)" nil t)
|
625 | 626 | (match-string-no-properties 1))))
|
626 | 627 |
|
| 628 | +(defun rails-core:current-migration-version () |
| 629 | + "Return the current migration version" |
| 630 | + (let ((name (buffer-file-name))) |
| 631 | + (when (string-match "db\\/migrate\\/\\([0-9]+\\)[a-z0-9_]+\.[a-z]+$" name) |
| 632 | + (match-string 1 name)))) |
| 633 | + |
627 | 634 | ;;;;;;;;;; Determination of buffer type ;;;;;;;;;;
|
628 | 635 |
|
629 | 636 | (defun rails-core:buffer-file-match (regexp)
|
@@ -688,13 +695,35 @@ the Rails minor mode log."
|
688 | 695 | (defun rails-core:menu-position ()
|
689 | 696 | (list '(300 50) (get-buffer-window (current-buffer)))))
|
690 | 697 |
|
| 698 | +;; fixup emacs-rails menu specs to work with tmm-prompt |
| 699 | +(defun rails-core:tmm-menu (menu) |
| 700 | + (symbol-name (tmm-prompt (cons (car menu) |
| 701 | + (mapcar (lambda (pane) |
| 702 | + (cons (car pane) |
| 703 | + (mapcar (lambda (item) |
| 704 | + (if (symbolp (cdr item)) |
| 705 | + item |
| 706 | + (cons (car item) |
| 707 | + (intern (cdr item))))) |
| 708 | + (cdr pane)))) |
| 709 | + (cdr menu)))))) |
| 710 | + |
| 711 | +(defun rails-core:ido-menu (menu) |
| 712 | + (let* ((prompt (car menu)) |
| 713 | + (mappings (cdr (car (cdr menu)))) |
| 714 | + (choices (delete-if #'not (mapcar (lambda (item) (car item)) mappings))) |
| 715 | + (result (ido-completing-read prompt choices))) |
| 716 | + (or (cdr (assoc result mappings)) result))) |
| 717 | + |
691 | 718 | (defun rails-core:menu (menu)
|
692 | 719 | "Show a menu."
|
693 | 720 | (let ((result
|
694 | 721 | (if (rails-use-text-menu)
|
695 |
| - (tmm-prompt menu) |
| 722 | + (funcall (or rails-text-menu-function |
| 723 | + (and (boundp 'ido-mode) ido-mode #'rails-core:ido-menu) |
| 724 | + #'rails-core:tmm-menu) menu) |
696 | 725 | (x-popup-menu (rails-core:menu-position)
|
697 |
| - (rails-core:prepare-menu menu))))) |
| 726 | + (rails-core:prepare-menu menu))))) |
698 | 727 | (if (listp result)
|
699 | 728 | (first result)
|
700 | 729 | result)))
|
@@ -752,7 +781,7 @@ the Rails minor mode log."
|
752 | 781 |
|
753 | 782 | (defun rails-core:rhtml-buffer-p ()
|
754 | 783 | "Return non nil if the current buffer is rhtml file."
|
755 |
| - (string-match "\\.html.erb$" (buffer-file-name))) |
| 784 | + (string-match "\\.rhtml\\|\\.html\\.erb$" (buffer-file-name))) |
756 | 785 |
|
757 | 786 | (defun rails-core:spec-exist-p ()
|
758 | 787 | "Return non nil if spec directory is exist."
|
|
0 commit comments