Skip to content

Commit f856949

Browse files
committed
merge my emacs on rails.
1 parent d06989f commit f856949

21 files changed

+418
-110
lines changed

vendor/80emacsonrails/emacs-rails/ChangeLog

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2008-12-09 "Joost Diepenmaat" <[email protected]>
2+
* rails-ui.el: modeline code cleanup
3+
4+
2008-12-08 "Joost Diepenmaat" <[email protected]>
5+
* rails-ui.el: fixed keymap for modeline and use toggle-output-window
6+
7+
2008-12-06 "Joost Diepenmaat" <[email protected]>
8+
* rails-ui.el: Added mode-line status reporting
9+
* rails-test.el: Made rails-test:quiet the default
10+
11+
2008-12-04 "Joost Diepenmaat" <[email protected]>
12+
* rails-script.el: Added "Kill script" command to abort current script / rake task
13+
114
2008-04-29 Tom ten Thij <[email protected]>
215

316
* rails.el: [#12451] Optional disablement ruby-electric-mode <pezra>, upping

vendor/80emacsonrails/emacs-rails/README

+10-5
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,21 @@ It is minor mode for editing "Ruby On Rails":ror code with
33
friendly
44

55

6-
== Instalation
6+
== Installation
77

88
You need download last release from RubyForge page
99
"http://rubyforge.org/projects/emacs-rails" and and unpack
1010
it to directory containing libraries of Emacs, by default it's
1111
$HOME/.emacs.d/
1212

13-
You can also use SVN
13+
Using Git:
1414

15-
cd $HOME/.emacs.d/
15+
cd $HOME/.emacs.d/
16+
git clone git://github.com/tomtt/emacs-rails.git
17+
18+
Using SVN:
19+
20+
cd $HOME/.emacs.d/
1621
svn co svn://rubyforge/var/svn/emacs-rails/trunk emacs-rails
1722

1823
Download and install required libraries
@@ -25,7 +30,7 @@ Download and install required libraries
2530

2631
After that you must add this code in $HOME/.emacs
2732

28-
(setq load-path (cons "~/.emacs.d/rails" load-path))
33+
(setq load-path (cons "~/.emacs.d/emacs-rails" load-path))
2934
(require 'rails)
3035

3136
For Windows users: you can use your help in CHM format (the default
@@ -139,4 +144,4 @@ If you find error, place it description in "BugTrack":bugtrack.
139144
[emacs]http://www.gnu.org/software/emacs/
140145
[ror]http://rubyonrails.org
141146
[emacs-rails]http://rubyforge.org/projects/emacs-rails
142-
[inf-ruby]http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/misc/inf-ruby.el?view=co
147+
[inf-ruby]http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/misc/inf-ruby.el?view=co

vendor/80emacsonrails/emacs-rails/inflections.el

+8-7
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,14 @@
3333
(defvar inflection-uncountables nil)
3434

3535
(defmacro define-inflectors (&rest specs)
36-
(loop for (type . rest) in specs do
37-
(case type
38-
(:singular (push rest inflection-singulars))
39-
(:plural (push rest inflection-plurals))
40-
(:irregular (push rest inflection-irregulars))
41-
(:uncountable (setf inflection-uncountables
42-
(append rest inflection-uncountables))))))
36+
`(progn
37+
,@(loop for (type . rest) in specs collect
38+
(case type
39+
(:singular `(push ',rest inflection-singulars))
40+
(:plural `(push ',rest inflection-plurals))
41+
(:irregular `(push ',rest inflection-irregulars))
42+
(:uncountable `(setf inflection-uncountables
43+
(append ',rest inflection-uncountables)))))))
4344

4445
(define-inflectors
4546
(:plural "$" "s")

vendor/80emacsonrails/emacs-rails/rails-bytecompile.el

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
(add-to-list 'load-path default-directory)
2+
13
(require 'rails)
24

35
(mapcar

vendor/80emacsonrails/emacs-rails/rails-cmd-proxy.el

+7
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,13 @@ otherwise if set REVERSE convert from remote to local."
101101
command
102102
command-args))
103103
(setq command rails-cmd-proxy:remote-cmd))
104+
(save-excursion
105+
(set-buffer (get-buffer-create buffer))
106+
(set (make-local-variable 'comint-scroll-to-bottom-on-output) t)
107+
(set (make-local-variable 'compilation-error-regexp-alist)
108+
rails-error-regexp-alist)
109+
(compilation-shell-minor-mode t)
110+
(rails-minor-mode t))
104111
(start-process-shell-command name
105112
buffer
106113
command

vendor/80emacsonrails/emacs-rails/rails-controller-layout.el

+2-6
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,7 @@ If the action is nil, return all views for the controller."
100100
"Make menu of view for CONTROLLER-NAME."
101101
(let (menu)
102102
(setq menu
103-
(mapcar (lambda(i)
104-
(list (concat (if (string-match "^_" (file-name-nondirectory i)) "Partial" "View")
105-
": "
106-
(file-name-nondirectory i))
107-
i))
103+
(mapcar (lambda(i) (cons (file-name-nondirectory i) i))
108104
(rails-controller-layout:view-files controller-name nil)))
109105
(when (zerop (length menu))
110106
(setq menu (list)))
@@ -174,7 +170,7 @@ If the action is nil, return all views for the controller."
174170
(progn
175171
(find-file file)
176172
(message (format "%s: %s" (substring (symbol-name type) 1) item)))
177-
(message "File %s not exists" file)))
173+
(message "File %s does not exist" file)))
178174
(message "%s not found" name))))
179175

180176
(defun rails-controller-layout:switch-to-helper () (interactive) (rails-controller-layout:switch-to :helper))

vendor/80emacsonrails/emacs-rails/rails-core.el

+40-11
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,21 @@
2828
(eval-when-compile
2929
(require 'rails-lib))
3030

31-
(defvar rails-core:class-dirs
31+
(defcustom rails-core:class-dirs
3232
'("app/controllers"
3333
"app/views"
3434
"app/models"
3535
"app/helpers"
3636
"test/unit"
3737
"test/functional"
38-
"test/fixtures"
3938
"spec/controllers"
4039
"spec/fixtures"
4140
"spec/lib"
4241
"spec/models"
4342
"lib")
44-
"Directories with Rails classes")
43+
"Directories with Rails classes"
44+
:group 'rails
45+
:type '(repeat string))
4546

4647
(defun rails-core:class-by-file (filename)
4748
"Return the class associated with FILENAME.
@@ -135,11 +136,11 @@ it does not exist, ask to create it using QUESTION as a prompt."
135136
(defun rails-core:controller-file (controller-name)
136137
"Return the path to the controller CONTROLLER-NAME."
137138
(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")))))
143144

144145
(defun rails-core:controller-exist-p (controller-name)
145146
"Return t if controller CONTROLLER-NAME exist."
@@ -624,6 +625,12 @@ If the action is nil, return all views for the controller."
624625
(when (search-backward-regexp "^[ ]*def \\([a-z0-9_]+\\)" nil t)
625626
(match-string-no-properties 1))))
626627

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+
627634
;;;;;;;;;; Determination of buffer type ;;;;;;;;;;
628635

629636
(defun rails-core:buffer-file-match (regexp)
@@ -688,13 +695,35 @@ the Rails minor mode log."
688695
(defun rails-core:menu-position ()
689696
(list '(300 50) (get-buffer-window (current-buffer)))))
690697

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+
691718
(defun rails-core:menu (menu)
692719
"Show a menu."
693720
(let ((result
694721
(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)
696725
(x-popup-menu (rails-core:menu-position)
697-
(rails-core:prepare-menu menu)))))
726+
(rails-core:prepare-menu menu)))))
698727
(if (listp result)
699728
(first result)
700729
result)))
@@ -752,7 +781,7 @@ the Rails minor mode log."
752781

753782
(defun rails-core:rhtml-buffer-p ()
754783
"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)))
756785

757786
(defun rails-core:spec-exist-p ()
758787
"Return non nil if spec directory is exist."

vendor/80emacsonrails/emacs-rails/rails-lib.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ ABBREV-TABLE."
208208
not exist."
209209
`(progn
210210
(unless (boundp ',key-map)
211-
(setf ,key-map (make-keymap)))
211+
(setf ,key-map (make-sparse-keymap)))
212212
,@(mapcar
213213
#'(lambda (key-func)
214214
`(define-key ,key-map ,(first key-func) ,(second key-func)))
@@ -392,7 +392,7 @@ as the value of the symbol, and the hook as the function definition."
392392
;; (setq mmm-indent-sandbox-finish-position nil)
393393
;; (save-excursion
394394
;; (set-buffer fragment-name)
395-
;; (beginning-of-buffer)
395+
;; (goto-char (point-min))
396396
;; (insert content)
397397
;; (goto-char fragment-pos)
398398
;; (funcall indent-func t)

vendor/80emacsonrails/emacs-rails/rails-model-layout.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
(progn
9898
(find-file file)
9999
(message (format "%s: %s" (substring (symbol-name type) 1) item)))
100-
(message "File %s not exists" file)))
100+
(message "File %s does not exist" file)))
101101
(message "%s not found" name))))
102102

103103
(defun rails-model-layout:switch-to-mailer () (interactive) (rails-model-layout:switch-to :mailer))
@@ -147,4 +147,4 @@
147147
(symbol (rails-model-layout:switch-to item))
148148
(string (rails-core:find-file-if-exist item))))))
149149

150-
(provide 'rails-model-layout)
150+
(provide 'rails-model-layout)

vendor/80emacsonrails/emacs-rails/rails-navigation.el

+24-10
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
(interactive)
6969
(rails-nav:goto-file-with-menu-from-list
7070
(rails-core:controllers t)
71-
"Go to controller"
71+
"Go to controller.."
7272
'rails-core:controller-file))
7373

7474
(defun rails-nav:goto-models ()
@@ -84,15 +84,15 @@
8484
(interactive)
8585
(rails-nav:goto-file-with-menu-from-list
8686
(rails-core:functional-tests)
87-
"Go to functional test."
87+
"Go to functional test.."
8888
'rails-core:functional-test-file))
8989

9090
(defun rails-nav:goto-unit-tests ()
9191
"Go to functional tests."
9292
(interactive)
9393
(rails-nav:goto-file-with-menu-from-list
9494
(rails-core:unit-tests)
95-
"Go to unit test."
95+
"Go to unit test.."
9696
'rails-core:unit-test-file))
9797

9898
(defun rails-nav:goto-observers ()
@@ -141,39 +141,39 @@
141141
(interactive)
142142
(rails-nav:goto-file-with-menu-from-list
143143
(rails-core:rspec-controllers)
144-
"Go to controller spec."
144+
"Go to controller spec.."
145145
'rails-core:rspec-controller-file))
146146

147147
(defun rails-nav:goto-rspec-lib ()
148148
"Go to lib specs."
149149
(interactive)
150150
(rails-nav:goto-file-with-menu-from-list
151151
(rails-core:rspec-lib)
152-
"Go to lib spec."
152+
"Go to lib spec.."
153153
'rails-core:rspec-lib-file))
154154

155155
(defun rails-nav:goto-rspec-models ()
156156
"Go to model specs."
157157
(interactive)
158158
(rails-nav:goto-file-with-menu-from-list
159159
(rails-core:rspec-models)
160-
"Go to model spec."
160+
"Go to model spec.."
161161
'rails-core:rspec-model-file))
162162

163163
(defun rails-nav:goto-rspec-views ()
164164
"Go to view specs."
165165
(interactive)
166166
(rails-nav:goto-file-with-menu-from-list
167167
(rails-core:rspec-views)
168-
"Go to view spec."
168+
"Go to view spec.."
169169
'rails-core:rspec-view-file))
170170

171171
(defun rails-nav:goto-rspec-fixtures ()
172172
"Go to rspec fuxtures."
173173
(interactive)
174174
(rails-nav:goto-file-with-menu-from-list
175175
(rails-core:rspec-fixtures)
176-
"Go to rspec fixtures."
176+
"Go to rspec fixtures.."
177177
'rails-core:rspec-fixture-file))
178178

179179
(defun rails-nav:create-new-layout (&optional name)
@@ -268,8 +268,11 @@ Rules for actions/controllers:
268268
rails-line-->controller+action
269269
rails-line-->layout
270270
rails-line-->stylesheet
271-
rails-line-->js)
272-
"Functions that will ne called to analyze the line when
271+
rails-line-->js
272+
rails-line-->association-model
273+
rails-line-->single-association-model
274+
rails-line-->multi-association-model)
275+
"Functions that will be called to analyze the line when
273276
rails-goto-file-on-current-line is run.")
274277

275278
(def-goto-line rails-line-->stylesheet (("[ ]*stylesheet_link_tag[ ][\"']\\([^\"']*\\)[\"']"
@@ -302,6 +305,17 @@ rails-goto-file-on-current-line is run.")
302305
(format "JavaScript file \"%s\" does not exist do you whant to create it? " name)
303306
(rails-core:js-file name)))
304307

308+
(def-goto-line rails-line-->association-model (("^[ \t]*\\(has_one\\|belongs_to\\|has_many\\|has_and_belongs_to_many\\)[ \t].*:class_name[ \t]*=>[ \t]*[\"']\\([^\"']*\\)[\"']"
309+
(name 2)))
310+
(rails-core:find-file (rails-core:model-file name)))
311+
312+
(def-goto-line rails-line-->single-association-model (("^[ \t]*\\(has_one\\|belongs_to\\)[ \t]*:\\([a-z0-9_]*\\)" (name 2)))
313+
(rails-core:find-file (rails-core:model-file name)))
314+
315+
(def-goto-line rails-line-->multi-association-model (("^[ \t]*\\(has_many\\|has_and_belongs_to_many\\)[ \t]*:\\([a-z0-9_]*\\)" (name 2)))
316+
(message (singularize-string name))
317+
(rails-core:find-file (rails-core:model-file (singularize-string name))))
318+
305319
(defvar rails-line-to-controller/action-keywords
306320
'("render" "redirect_to" "link_to" "form_tag" "start_form_tag" "render_component"
307321
"form_remote_tag" "link_to_remote"))

0 commit comments

Comments
 (0)