public
Description: Rinari Is Not A Rails IDE
Homepage: http://rinari.rubyforge.org
Clone URL: git://github.com/technomancy/rinari.git
improvement to rinari-grep, and updated the jump submodule for better 
movement between controllers and views
eschulte (author)
Thu Oct 02 22:24:54 -0700 2008
commit  4e5d53e4f4061fc517b36b897a0ece0d1b4e73ed
tree    b80b30ed4314904d28c3ac5448bf56c13d04bb7d
parent  0d4aaf026152ff98371e32ddfb893971b514e691
0
...
9
10
11
12
13
14
15
16
17
 
 
 
 
 
 
 
 
 
 
 
18
19
20
...
24
25
26
27
 
 
 
 
 
 
 
 
 
 
 
 
 
28
29
30
...
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
...
9
10
11
 
 
 
 
 
 
12
13
14
15
16
17
18
19
20
21
22
23
24
25
...
29
30
31
 
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
...
89
90
91
 
 
 
 
 
 
 
 
 
 
 
92
93
94
0
@@ -9,12 +9,17 @@ List of pending/completed tasks for rinari
0
 
0
 for background see http://groups.google.com/group/emacs-on-rails
0
 
0
-* TODO full test coverage (ERT) [0/1]
0
-- [X] movement tests
0
-- [-] compilation tests
0
- - [X] console
0
- - [X] web-server
0
- - [X] test
0
+* TODO full test coverage (ERT) [0/2]
0
+- [ ] movement tests
0
+ - [ ] controller
0
+ - [ ] view
0
+ - [ ] model
0
+ - [ ] test
0
+ - [ ] rspec
0
+- [ ] compilation tests
0
+ - [ ] console
0
+ - [ ] web-server
0
+ - [ ] test
0
   - [ ] sql
0
   - [ ] script
0
 
0
@@ -24,7 +29,19 @@ switch from using elunit.el to ert.el for testing
0
 promotion!!
0
 
0
 - [[http://www.emacswiki.org/cgi-bin/wiki/EmacsScreencasts]]
0
-* TODO windows support
0
+
0
+* TODO updates to finders
0
+When finding a view from a controller if there is no method name, then
0
+select from the related directory
0
+
0
+* DONE upodate documentation for instillation
0
+ :PROPERTIES:
0
+ :suggested-by: Antti
0
+ :END:
0
+need to add =git submodule init; git submodule update= to clone the
0
+submodules as well
0
+
0
+* PARTIAL windows support
0
   :PROPERTIES:
0
   :tested-by: Darren Syzling
0
   :END:
0
@@ -72,17 +89,6 @@ comp-buffer-name) (let* ... ...)) comp-buffer-name)
0
   call-interactively(rinari-rake)
0
 #+END_EXAMPLE
0
 
0
-* TODO upodate documentation for instillation
0
- :PROPERTIES:
0
- :suggested-by: Antti
0
- :END:
0
-need to add =git submodule init; git submodule update= to clone the
0
-submodules as well
0
-
0
-* TODO updates to finders
0
-when finding a view from a controller if there is no method name, then
0
-select from that controller's directory.
0
-
0
 * PARTIAL bundles
0
 ** DONE rhtml (from original rinari)
0
 see
...
250
251
252
253
 
254
255
256
...
259
260
261
262
263
 
 
 
264
265
266
...
250
251
252
 
253
254
255
256
...
259
260
261
 
 
262
263
264
265
266
267
0
@@ -250,7 +250,7 @@ don't include an '='."
0
       (message "not in a view"))))
0
 
0
 (defvar rinari-rgrep-file-endings
0
- "*.rb *.*"
0
+ "*.[^l]*"
0
   "Ending of files to search for matches using `rinari-rgrep'")
0
 
0
 (defun rinari-rgrep (&optional arg)
0
@@ -259,8 +259,9 @@ With optional prefix argument just run `rgrep'."
0
   (interactive "P")
0
   (grep-compute-defaults)
0
   (if arg (call-interactively 'rgrep)
0
- (funcall 'rgrep (read-from-minibuffer "search for: ")
0
- rinari-rgrep-file-endings (rinari-root))))
0
+ (let ((word (thing-at-point 'word)))
0
+ (funcall 'rgrep (read-from-minibuffer "search for: " word)
0
+ rinari-rgrep-file-endings (rinari-root)))))
0
 
0
 ;;--------------------------------------------------------------------
0
 ;; rinari movement using jump.el
...
1
 
...
 
1
0
@@ -1 +1 @@
0
-Subproject commit f4f8852b6dac324811a142ff2c007e8661e4d968
0
+Subproject commit 7982351c873ba2ce9fdf2ff80d0af9f0ffb6d70f

Comments

    No one has commented yet.