/ emacs.d / rails / History
History
  1  0.5.99.5
  2  * Fixed bug [#10613]: Wrong comparison of emacs-major-version
  3  * Apply patch [#10532]: allows '-' to occur in the errror filepath (thanks Peter Williams)
  4  * Fixed bug [#10417]: ruby-flymake had applying only if flymake is
  5    available.
  6  * Raise a error if emacs-rails run on old version of Emacs (less 22)
  7  * Updated view mode of "views"
  8  * Fixed bug [#10357]: code expansion shouldn't occur in comment lines.
  9  
 10  0.5.99.4
 11  * Added the test/test_helper in list of helpers.
 12  * Added list of templates in speedbar.
 13  * Fixed bug [#10056]: when one open file in a read only directory,
 14    flymake try to open a new file and failed (thanks Rémi Vanicat).
 15  * Fixed bug [#9991]: allow setup key prefix for rails-minor-mode.
 16  * Fixed bug [#10053]: don't match rhtml/rxml/rjs files in test output (thanks Rémi Vanicat).
 17  
 18  0.5.99.3
 19  * Added speedbar integration, type [F11] to toogle speedbar.
 20  * Fixed bug #9880: the hotkey "C-c ." conflicted with ECB, changed to "C-c C-c ,".
 21  * New hotkeys, to easy switch without a popup menu between a
 22    controller or a model related files.
 23    In model layout:
 24      - "C-c m" go to model
 25      - "C-c u" go to unit test
 26      - "C-c g" go to migration
 27      - "C-c c" go to controller
 28      - "C-c x" go to fixture
 29      - "C-c n" go to mailer
 30    In controller layout:
 31      - "C-c g" go to migration
 32      - "C-c m" go to model
 33      - "C-c h" go to helper
 34      - "C-c f" go to functional test
 35      - "C-c c" go to controller
 36      - "C-c u" go to unit test
 37  * Fixed bug #9783 (remove-postfix: Wrong type argument: arrayp, nil).
 38  * Updated the compilation output, for better highlight of error and warnings.
 39  * Added the flymake support to on the fly syntax checked in the ruby-mode.
 40  
 41  0.5.99.2
 42  * Added new dynamic snippets for RESTful,
 43      for instance: in controller UsersController type "rshow<TAB>"
 44      will be expand to "user_url(@user)" and display tooltip "GET /users/1".
 45  * Added migration support - migrate, migrate to previous version,
 46    migrate to version.
 47  * Created separate menubar entries named "Navigate", "Database", "Tests".
 48  * Fixed bug #9721: Emacs 21.4.x can't load rails-core.el with error "Wrong
 49    number of arguments: #<subr defalias>".
 50  * Added support pcompletion in ruby-mode (if possible).
 51  * Added new "Go to unit tests" and "Go to functional tests" hotkeys
 52    and menu entries.
 53  * Added tests integration with the compile library.
 54  * New [C-c /] hotkey to toggle output window.
 55  
 56  0.5.99.1
 57  * Fixed bug #9619, script/server fails to start with [C-c C-c w s].
 58  * Added hotkeys for tests:
 59    - [C-c C-c .] running a test for current model/controller (global)
 60    - [C-c .] running a test for current method (in a functional/unit test)
 61  * Prints total of tests, asertions, failures, errors after end of
 62    tests running.
 63  * Fixed recursive "require" error after compilation #9547.
 64  
 65  0.5.99
 66  * Improvement of tests and rails scripts output; run asynchronous,
 67    colorize output, etc.
 68  * New [C-:] hotkey to easy switch between strings and symbols at point
 69    in ruby-mode.
 70  * New [C-c f] hotkey to popup a menu with list of functions in
 71    ruby-mode.
 72  
 73  0.5.4
 74  * Added mailers support.
 75  * Added fixtures support.
 76  * Fixed incorrect indentation in snippets [#9460].
 77  * Added support template types in layouts menu.
 78  * Added support haml template engine.
 79  * Use `compile` to run `rake tests`.
 80  * Ask to save modified buffers before run rake.
 81  * Added "quick switch" to support models and unit tests.
 82  
 83  0.5.3
 84  * Create separate menubar entry "Snippets".
 85  * Allow web server selection auto-save.
 86  * Corrected errors at work with sql.
 87  * Fixed byte-compile warnings.
 88  
 89  0.5.2
 90  * Fixed bugs: #8221, #8223.
 91  * Using system `tail` program for display log files.
 92  
 93  0.5.1 at 27.01.2007
 94  * Support plugin: quick menu "Go to plugins" and navigate inside
 95    plugin.
 96  * Update Web Server support, add Lighttd to list of supported servers.
 97  * Automatic apply ruby-mode to *.rake files and setup utf-8 encoding.
 98  * Add more targets to generate/destroy.
 99  * Add autocomplete in generate/destroy/rake/test commands.
100  * Small fixes indentation in snippets.