Quick Search:

jump to detailed chart Line History

line history graph

View Mode

Logical Physical

Show Arbitrary Diff

From to

Supports revisions and tags.

Watches and RSS

History

trunk 9565 2749

latest revision download trunk

9565 annotated / raw | Diffs: previous, other | Lines: 91 ( +2, -1 )

Created: 2008-05-11 19:55:00 -0500 (6 months ago) | Author: drnic | Changeset: 9565

Allow "Go to File" to work on file system paths containing spaces by URI escaping the file path sent to txmt://open [Michael Klett]

9382 annotated / raw | Diffs: previous, other | Lines: 90 ( +0, -8 )

Created: 2008-04-13 23:25:44 -0500 (7 months ago) | Author: msheets | Changeset: 9382

Remove rescan_project in favor of main library version.

9078 annotated / raw | Diffs: previous, other | Lines: 98 ( +6, -78 )

Created: 2008-03-09 22:54:16 -0500 (8 months ago) | Author: msheets | Changeset: 9078

Move to the main TextMate library functions where possible.

* refresh_project_drawer is now rescan_project
* exit_codes switched to main library.
* Move almost all dialog methods away from CocoaDialog to tm_dialog.
* Remove unused call_with_progress

9069 annotated / raw | Diffs: previous, other | Lines: 170 ( +12, -12 )

Created: 2008-03-08 10:22:13 -0600 (8 months ago) | Author: kevin | Changeset: 9069

This is a merge from the git repository hosted by Dr. Nic
http://github.com/drnic/ruby-on-rails-tmbundle/commit/7edadd1

== 1.90.0 2008-03-08

* Major Upgrade to Rails 2.0 - Initial release
* Ruby on Rails bundle maintenance has been taken over by Dr Nic Williams from its initial legendary creator Duane Johnson.
* Added so far:
 * Snippets/Commands for:
   * Tests
     * assert_select (ass)
     * assert_difference/assert_no_difference (asd/asnd)
     * GET+POST test method stubs (deftg+deftp)
     * posts(:) + Alt+Esc allows you to select a posts.yml fixture
   * Controllers
     * respond_to (rest) and respond_to(html) (Shift+Cmd+H)
     * 'Go To View' within a respond_to will use the format/wants type as the default
     * REMOVED: render_component snippets
     * loggers - pass a block instead of raw string to save time if
       logging not used (e.g. production) [Stephen Touset]
     * redirect_to for resource paths (rep, repp, renp, renpp)
     * render :update (ru) [Simon Jefford]
   * Views
     * form_for and form_for(with errors) (ff,ffe)
     * Various form_for helpers in a drop-down list, e.g. f.text_field (f.)
     * Various form_for helpers with own tab completion, e.g. f.text_field (fftf)
     * link_to for resource paths (lip, lipp, linp, linpp)
     * <% end -%> (end)
     * for-loop (for)
     * link_to(@model.name, @model) (ltm)
   * Layouts
     * javascript_include_tag - jit
     * stylesheet_link_tag - slt
   * Models
     * has_many :though (hmt)
     * association snippets give better defaults (e.g. bt + hm)
     * validates_format_of (vf,vfif) [Dean Strelau]
     * validates_numericality_of (vn,vnif) [Tom Morris]
     * before/after callbacks (prefix bef/aft + 1st letter of words) [Sam Granieri]
   * Migrations
     * Sexy Migrations now available as "t." snippets and regular snippets [Lawrence Pit]
     * Migration classes have own textmate scope
     * Add/Remove Columns - the 'down' statements are in reverse
       order [Lawrence Pit, Daniel Kristensen]
     * Added 'Redo Last Migration' [Simon Jefford]
   * Functional Tests
     * assert_redirect_to for resource paths (artp, artpp, artnp, artnpp)
     * assert(assigns(:model)) (asg)
   * Routes
     * named routes, resources snippets (map, mapr, maprs)
     * catch_all (mapca) [Sam Granieri]
   * Active Support
     * cattr_accessor/mattr_accessor (crw/mrw) [Jacob Swanner]
     * returning (returning) [Jacob Swanner]
 * Language/Syntax
   * New keywords: rescue_from, alias_method_chain, alias_attribute, delegate, respond_to [David Lowenfels, Jacob Swanner]
   * Added rb as a valid Rails file type [James Deville]
 * Commands
   * Auto-completion for Foxy Fixtures
   * html.erb is the default for new templates (backwards compatibility
     is being worked on too)
   * 'Go To XXX' - available for wide range of permutations.
     Fixtures -> Models; Models -> Controllers, etc
   * haml is a valid file extension [Steve Ross]
   * specify alternate default file extensions for: [Steve Ross]
     * javascript - ENV['RAILS_JS_EXT']
     * stylesheet - ENV['RAILS_CSS_EXT']
     * view - ENV['RAILS_VIEW_EXT']
   * 'Call Generate Script' now accesses all a project's generators
 * Plugins
   * Footnote
     * footnote-edge uses .erb for templates [Stephen Bannasch]
 * Internals
   * Rakefile - test runner [Steve Ross]
   * Added generator_test
   * Removed unnecessary misc_test
   * script/clean_bundle_file_names - rename non-os-agnostic file names [Charles Roper]
 * Haml support [Lawrence Pit]

For thoughts and patches, email drnicwilliams@gmail.com

9066 new/copied annotated / raw | Diffs: previous, other | Lines: 170 ( +170, -0 )

Created: 2008-03-08 04:54:03 -0600 (8 months ago) | Author: msheets | Changeset: 9066

Copied from: trunk/Bundles/Ruby on Rails.tmbundle/Support/lib/rails/text_mate.rb 8048

Revery to r9060.

9065 deleted | Diffs: previous, other | Lines: 0 ( +0, -170 )

Created: 2008-03-08 04:51:23 -0600 (8 months ago) | Author: msheets | Changeset: 9065

Removing to get a clean git import.

9064 annotated / raw | Diffs: previous, other | Lines: 170 ( +12, -12 )

Created: 2008-03-08 04:21:40 -0600 (8 months ago) | Author: duff | Changeset: 9064

• revert 9061 and 9062

9061 annotated / raw | Diffs: previous, other | Lines: 170 ( +12, -12 )

Created: 2008-03-07 17:08:28 -0600 (8 months ago) | Author: drnic | Changeset: 9061

== 1.90.0 2008-03-08

* Major Upgrade to Rails 2.0 - Initial release
* Ruby on Rails bundle maintenance has been taken over by Dr Nic Williams from its initial legendary creator Duane Johnson.
* Added so far:
 * Snippets/Commands for:
   * Tests
     * assert_select (ass)
     * assert_difference/assert_no_difference (asd/asnd)
     * GET+POST test method stubs (deftg+deftp)
     * posts(:) + Alt+Esc allows you to select a posts.yml fixture
   * Controllers
     * respond_to (rest) and respond_to(html) (Shift+Cmd+H)
     * 'Go To View' within a respond_to will use the format/wants type as the default
     * REMOVED: render_component snippets
     * loggers - pass a block instead of raw string to save time if
       logging not used (e.g. production) [Stephen Touset]
     * redirect_to for resource paths (rep, repp, renp, renpp)
     * render :update (ru) [Simon Jefford]
   * Views
     * form_for and form_for(with errors) (ff,ffe)
     * Various form_for helpers in a drop-down list, e.g. f.text_field (f.)
     * Various form_for helpers with own tab completion, e.g. f.text_field (fftf)
     * link_to for resource paths (lip, lipp, linp, linpp)
     * <% end -%> (end)
     * for-loop (for)
     * link_to(@model.name, @model) (ltm)
   * Layouts
     * javascript_include_tag - jit
     * stylesheet_link_tag - slt
   * Models
     * has_many :though (hmt)
     * association snippets give better defaults (e.g. bt + hm)
     * validates_format_of (vf,vfif) [Dean Strelau]
     * validates_numericality_of (vn,vnif) [Tom Morris]
     * before/after callbacks (prefix bef/aft + 1st letter of words) [Sam Granieri]
   * Migrations
     * Sexy Migrations now available as "t." snippets and regular snippets [Lawrence Pit]
     * Migration classes have own textmate scope
     * Add/Remove Columns - the 'down' statements are in reverse
       order [Lawrence Pit, Daniel Kristensen]
     * Added 'Redo Last Migration' [Simon Jefford]
   * Functional Tests
     * assert_redirect_to for resource paths (artp, artpp, artnp, artnpp)
     * assert(assigns(:model)) (asg)
   * Routes
     * named routes, resources snippets (map, mapr, maprs)
     * catch_all (mapca) [Sam Granieri]
   * Active Support
     * cattr_accessor/mattr_accessor (crw/mrw) [Jacob Swanner]
     * returning (returning) [Jacob Swanner]
 * Language/Syntax
   * New keywords: rescue_from, alias_method_chain, alias_attribute, delegate, respond_to [David Lowenfels, Jacob Swanner]
   * Added rb as a valid Rails file type [James Deville]
 * Commands
   * Auto-completion for Foxy Fixtures
   * html.erb is the default for new templates (backwards compatibility
     is being worked on too)
   * 'Go To XXX' - available for wide range of permutations.
     Fixtures -> Models; Models -> Controllers, etc
   * haml is a valid file extension [Steve Ross]
   * specify alternate default file extensions for: [Steve Ross]
     * javascript - ENV['RAILS_JS_EXT']
     * stylesheet - ENV['RAILS_CSS_EXT']
     * view - ENV['RAILS_VIEW_EXT']
   * 'Call Generate Script' now accesses all a project's generators
 * Plugins
   * Footnote
     * footnote-edge uses .erb for templates [Stephen Bannasch]
 * Internals
   * Rakefile - test runner [Steve Ross]
   * Added generator_test
   * Removed unnecessary misc_test
   * script/clean_bundle_file_names - rename non-os-agnostic file names [Charles Roper]
 * Haml support [Lawrence Pit]

For thoughts and patches, email drnicwilliams@gmail.com

8048 new/copied annotated / raw | Diffs: previous, other | Lines: 170 ( +170, -0 )

Created: 2007-08-28 14:08:22 -0500 (14 months ago) | Author: msheets | Changeset: 8048

Copied from: trunk/Bundles/Rails.tmbundle/Support/lib/rails/text_mate.rb 2788

Copied to: trunk/Bundles/Ruby on Rails.tmbundle/Support/lib/rails/text_mate.rb 9066

Renaming bundle to "Ruby on Rails" to conform to bundle style guide.

2788 annotated / raw | Diffs: previous, other | Lines: 170 ( +5, -0 )

Created: 2006-02-26 22:55:00 -0600 (2 years 8 months ago) | Author: canadaduane | Changeset: 2788

Copied to: trunk/Bundles/Ruby on Rails.tmbundle/Support/lib/rails/text_mate.rb 8048

Fixed generate script to work with TM_RUBY, output now shows list of created files, fixed that it would open created directories (now opens files only), added 'textbox' message type for cocoa dialog

2770 annotated / raw | Diffs: previous, other | Lines: 165 ( +5, -1 )

Created: 2006-02-25 15:43:05 -0600 (2 years 8 months ago) | Author: canadaduane | Changeset: 2770

Fixed some error messages when no project directory.  Removed deprecated rails-open-partner file

2768 annotated / raw | Diffs: previous, other | Lines: 161 ( +15, -3 )

Created: 2006-02-25 15:16:41 -0600 (2 years 8 months ago) | Author: canadaduane | Changeset: 2768

Added unit tests to Rails bundle, added Buffer class, much more robust matching of partner files.  Also added language scoping so that commands can be context sensitive within, e.g. a controller, or within a functional test

2749 new annotated / raw | Lines: 149 ( +149, -0 )

Created: 2006-02-22 07:24:27 -0600 (2 years 8 months ago) | Author: canadaduane | Changeset: 2749

Merged syncPEOPLE on Rails bundle in to built-in Rails bundle.  Released as MIT licensed.

Crucible: Open Source License registered to Atlassian.
Atlassian FishEye, Subversion, CVS & Perforce analysis. (Version:1.5.5 Build:build-dev18790 2008-08-11 ) - Administration - Page generated 2008-11-19 17:33 -0600