forked from dhoelzgen/ruby-on-rails-tmbundle
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChangeLog
1578 lines (1071 loc) · 63.9 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2011-05-12 Wael Nasreddine <wael.nasreddine@gmail.com>
* README.md: Personalise the README (more details coming later.
2011-04-11 John Gibb <johngibb@gmail.com>
* Support/bin/show_schema.rb: bug with singularize doesn't work right if the
input isn't already plural. example: address.singularize = addres
2011-04-06 John Gibb <johngibb@gmail.com>
* Support/bin/rake_helper.rb: html encode < and >
* Support/bin/rake_helper.rb: better place to remove 0 results line
* Support/bin/rake_helper.rb: redirect stderr to stdout and filter out first
line indicating which library is loaded
* Support/bin/rake_helper.rb: color results based on failures
* Support/bin/rake_helper.rb: Remove extraneous junk before test results
2011-03-29 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/Open Recent Migrations.tmCommand: Updated recent migrations to
show the last 50
2011-03-29 John Gibb <johngibb@gmail.com>
* Support/lib/rails/rails_path.rb: add support for slim
* install: add install command
2011-03-28 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/Open Recent Migrations.tmCommand: Added filename / version to
output of recent migrations
* .../delete singular_path(id) [DESTROY].tmSnippet: Fixed rest delete snippet
2011-03-21 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Syntaxes/Ruby on Rails.plist: Updated language to recognize share_setup
2011-03-15 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Support/bin/list_methods.rb: Fixed list methods so it properly handles
changed calls
2011-03-12 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* README.md, Support/bin/list_methods.rb: Added ability for list_methods to
autocomplete a partially formed method name (it will still pop up a search
text field if you enter the command at the end of an class/variable, but now
you can do something like model.meth ⌥⌘+␣ and it will list all
instance methods on model that match 'meth')
* Commands/Open Recent Migrations.tmCommand: Updated open migrations to
gracefully handle the case where the timestamp of a migration file name is
corrupted
* Support/lib/rails/command_go_to_file.rb: Replaced default test file created
by goto file to just require test helper rather than assume test helper is up
1 level
2011-02-28 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Support/bin/list_methods.rb: Updated list_methods to prompt for class and
not dynamically clone the cache for misses.
2011-02-24 dhoelzgen <daniel.hoelzgen@me.com>
* Support/lib/rails/generate.rb: Updated auto-detection of generators for
Rails 3
* Support/bin/generate.rb, Support/lib/rails_bundle_tools.rb: Changed the way
rails is called
* Support/bin/generate.rb, Support/lib/rails_bundle_tools.rb: Changed
generator commands to support Rails 3
2011-02-21 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Syntaxes/Ruby on Rails.plist: Updated for shared_should version 0.6
2011-02-15 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Support/bin/list_methods.rb: Updated list_methods to write to a temp file
first in case there is an error it will not corrupt the cache
2011-02-14 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Syntaxes/Ruby on Rails.plist: Fixed language to handle shoulda context /
should lines with a comment at the end
2011-02-11 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* README.md: Updated readme
2011-02-10 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Support/bin/list_factories.rb: Updated list factories to support factory
definitions without parentheses and to seach any file in text/factories and
spec/factories
2011-02-09 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Syntaxes/Ruby on Rails.plist: Added new shared should keywords
2011-02-08 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/List columns of a model.tmCommand: Changed shortcut of list
methods command to be ⌥⌘+␣
2011-02-03 Carlos Brando <eduardobrando@gmail.com>
* Snippets/get :on => :member.tmSnippet, Snippets/get.tmSnippet, info.plist:
Improved get snippet.
2011-02-01 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Snippets/move column after.tmSnippet: Updated move column after snippet
2011-02-01 Matthew Lehner <matthewlehner@gmail.com>
* Support/bin/create_partial_from_selection.rb: Fixed bug caused by invalid
chars in create_partial_from_selection.rb line 17
2011-01-28 Carlos Brando <eduardobrando@gmail.com>
* Snippets/caches_action.tmSnippet, Snippets/get.tmSnippet,
Snippets/respond_to.tmSnippet, Support/lib/rvm/change_rvm,
Support/lib/rvm/rvm.rb, Support/lib/rvm/rvm_textmate, info.plist: Fix bug
with RVM support and added some new snippets.
2011-01-27 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* README.md: Updated readme
* .../Convert move column in migration.tmCommand, Snippets/move column
after.tmSnippet, Support/bin/migration_helpers.rb, info.plist: Added move
column snippet and command
2011-01-24 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Snippets/validates_acceptance_of (menu).tmSnippet,
Snippets/validates_associated (menu).tmSnippet, .../validates_confirmation_of
(menu).tmSnippet, Snippets/validates_exclusion_of (menu).tmSnippet,
Snippets/validates_format_of (menu).tmSnippet,
Snippets/validates_inclusion_of (menu).tmSnippet,
Snippets/validates_inclusion_of.tmSnippet, Snippets/validates_length_of
(menu).tmSnippet, .../validates_numericality_of (menu).tmSnippet,
Snippets/validates_presence_of (menu).tmSnippet,
Snippets/validates_uniqueness_of (menu).tmSnippet, info.plist: Added
validation menu with v⇥
2011-01-12 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Snippets/each_with_object.tmSnippet, info.plist: Added each_with_object
snippet
* Syntaxes/Ruby on Rails.plist: Updated rails language to make 'returning' a
keyword. While it's not actually a keyword, it helps to have returning
treated the same as return by textmate themes
2011-01-05 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Support/lib/search_utilities.rb: Updated searching capabilities to try the
reverse order split off _ and ' '
2010-12-23 vann <vann@innerfusion.net>
* Commands/Make Selection in to Partial.plist: add make selection into
partial
2010-05-22 Justin Perkins <justinperkins@gmail.com>
* Support/lib/rails/command_go_to_file.rb: add go_to_file support for the
shorthand partial syntax
2010-12-22 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/Convert to assert_equal.tmCommand, Commands/Convert to
update_attributes!.tmCommand, info.plist: Added / updated command to convert
variable = value into assert_equal value, variable, and
variable.update_attributes!(:variable => value)
2010-12-08 Dylan Markow <dm@petefowler.com>
* Syntaxes/Ruby on Rails.plist: Add 'validates' as valid syntax in
support.function.activerecord.rails
2010-12-01 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/Convert to update_attributes!.tmCommand, Snippets/Test Assert
Response (are).plist, info.plist: Removed puts @response.body from
assert_response and added convert to update_attributes! command
2010-11-29 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Support/bin/list_methods.rb: Updated list methods to show class/instance
you are search methods against
* Commands/Open Recent Migrations.tmCommand: Updated recent migrations to
show 20 migrations
2010-11-22 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Support/bin/list_methods.rb: Updated list methods to differenciate between
class and instance methods
2010-11-18 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Syntaxes/Ruby on Rails.plist: Fixed language for parameterized shared
shoulds
2010-11-17 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Syntaxes/Ruby on Rails.plist: Updated for new shared name
* Syntaxes/Ruby on Rails.plist: Updated language for corrected shared should
naming
2010-11-11 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Support/lib/search_utilities.rb: Updated to gracefully handle the case
where you hit cancel on the find factory command
2010-11-09 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/List columns of a model.tmCommand, Support/bin/list_methods.rb:
Misc fixes to list methods. (Updated name from columns to methods and don't
count the matching class message in the list of valid choices)
* Support/bin/list_methods.rb: Updated cache name to be methods cache since
it now lists methods as well as attributes
2010-11-02 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/List columns of a model.tmCommand, Support/bin/list_columns.rb,
Support/bin/list_methods.rb: Added methods to list_columns and renamed to
list_methods
2010-10-28 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Support/bin/list_columns.rb: Improved class recognition for list columns
2010-10-27 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/List columns of a model.tmCommand, Snippets/within.tmSnippet,
Support/bin/list_columns.rb, Support/lib/search_utilities.rb, info.plist:
Improved sorting of list commands and added within snippet
2010-10-26 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Support/bin/list_factories.rb: Auto fill in with 1 result in list factories
* Support/bin/list_columns.rb: Added class variables to list columns and
better handling of 0 results and 1 result
* Support/lib/search_utilities.rb: Improved search and sort to be case
insensitive
* Snippets/select_pairs.tmSnippet, info.plist: Added select_pairs snippet
2010-10-25 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Support/bin/list_columns.rb, Support/lib/rails/buffer.rb,
Support/lib/rails/rails_path.rb, Support/lib/rails_bundle_tools.rb: Allow
list_column cacher to be called from a background process
* Commands/List columns of a model.tmCommand, Support/bin/list_columns.rb:
Fixed list columns to properly use current word from textmate
* README.md: Updated readme
* Support/bin/list_columns.rb, Support/bin/list_factories.rb,
Support/lib/search_utilities.rb: Added search/sorting on show columns
* Commands/List columns of a model.tmCommand, Support/bin/list_columns.rb:
Fixed list columns to work without the rvm requirements and to paste selected
attributes with a period before it
* Support/bin/list_columns.rb: Fixed list columns to work with nested model
files. Files that don't map to models no longer cause the importing to crap
out.
* Support/bin/list_factories.rb: Updated so that list_factories checks
subdirectories
* Commands/List factories.tmCommand, Support/bin/list_factories.rb,
Support/lib/rails/rails_path.rb: Improved rails_root detection and updated
list_factories to gracefully handle no rails root
* Support/bin/list_factories.rb: Updated sorting of factories and cleaner
error handling
* README.md: Updated read me for Fac command
* Commands/List columns of a model.tmCommand, Commands/List
factories.tmCommand, Support/bin/list_columns.rb,
Support/bin/list_factories.rb, Support/bin/routes_auto_complete.rb,
Support/lib/Builder.rb, info.plist: Merged in some changes from the parent
rails bundle. Added a list factories command
2010-10-23 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Snippets/update_attributes!.tmSnippet, info.plist: Added update_attributes!
snippet (ua)
2010-10-22 vann <vann@innerfusion.net>
* Commands/Make Selection in to Partial.plist: minor updates
* Support/bin/create_partial_from_selection.rb: add in gsub for wierd looking
characters
* Commands/Make Selection in to Partial.plist,
Support/bin/create_partial_from_selection.rb: make create partial from
selection even simpler
* Commands/Make Selection in to Partial.plist,
Support/bin/create_partial_from_selection.rb: make create from selection much
much more simpler
2010-10-20 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Syntaxes/Ruby on Rails.plist: Updated syntax coloring for shared should
definitions
2010-10-12 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/Open development_log.tmCommand, Commands/Open
production_log.tmCommand, Commands/Open test_log.tmCommand, Commands/Tail
develoment_log.tmCommand, Commands/Tail production_log.tmCommand,
Commands/Tail test_log.tmCommand, Snippets/Rails_logger.tmSnippet,
info.plist: Updated scope of open logs to work on all scopes. Added
Rails.log snippet (rlog⇥)
2010-09-07 Carlos Brando <eduardobrando@gmail.com>
* README.md: README fixed.
2010-08-23 Carlos Brando <eduardobrando@gmail.com>
* Snippets/gem.tmSnippet, Snippets/link_to_function.tmSnippet, info.plist:
Improved link_to_function and gem snippet.
2010-08-22 Michael Sheets <git@whitefalls.org>
* info.plist: Move find_each into the menu proper.
2010-08-11 robertlyc <merlinlyc@gmail.com>
* Support/bin/rake_helper.rb: fix bug for invalid multibyte char (US-ASCII)
in rake_helper.rb line 67
2010-06-28 Carlos Brando <eduardobrando@gmail.com>
* Snippets/Create functional test class.tmSnippet,
Support/bin/list_columns.rb: Fixed autocomplete bug when model has no
associations. Thanks alobato (Arley Lobato). Changed Create functional test
snippet.
2010-06-24 Carlos Brando <eduardobrando@gmail.com>
* Syntaxes/JavaScript (Rails).tmLanguage: Changed JavaScript (Rails)'s
pattern from source.ruby.rails.erb to source.ruby.rails.embedded.html.
* Syntaxes/JavaScript (Rails).tmLanguage: Ops, remove ','.
* Preferences/Template (ERB).tmPreferences, Syntaxes/JavaScript
(Rails).tmLanguage: Added jQuery to JavaScript (Rails) language syntax.
* Snippets/format (respond_with).tmSnippet, Snippets/respond_to
(html).tmSnippet, Snippets/respond_to.tmSnippet,
Snippets/respond_with.tmSnippet, Snippets/wants_format.tmSnippet, info.plist:
Updated respond_to and respond_with to Rails 3.
* Snippets/after_validation.tmSnippet,
Snippets/after_validation_on_create.tmSnippet,
Snippets/after_validation_on_update.tmSnippet,
Snippets/before_validation.tmSnippet,
Snippets/before_validation_on_create.tmSnippet,
Snippets/before_validation_on_update.tmSnippet, info.plist: Updated
before_validation and after_validation to Rails 3 syntax.
2010-06-23 Carlos Brando <eduardobrando@gmail.com>
* Snippets/Test Assert Response (are).plist,
Snippets/assert_difference.tmSnippet, Snippets/belongs_to (bt).plist,
Snippets/default_scope.tmSnippet, Snippets/has_and_belongs_to_many
(habtm).plist, Snippets/has_many (hm).plist, Snippets/has_many
(through).tmSnippet, Snippets/has_many :dependent => :destroy.tmSnippet,
Snippets/has_one (ho).plist, Snippets/named_scope lambda.tmSnippet,
Snippets/named_scope.tmSnippet, Snippets/scope lambda.tmSnippet,
Snippets/scope with extension.tmSnippet, Snippets/scope.tmSnippet,
Syntaxes/Ruby on Rails.plist, info.plist: Updated named_scope to scope (Rails
3) and changed all associations snippets to meta.rails.model scope.
2010-06-23 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* README.md: Updated readme noting mkdynamic's script
2010-06-22 Carlos Brando <eduardobrando@gmail.com>
* Snippets/setup do__end.tmSnippet, info.plist: Added setup snippet and
reorganized tests menu.
2010-06-16 Carlos Brando <eduardobrando@gmail.com>
* Support/bin/list_columns.rb: Refactoring code.
2010-06-16 Henning Staib <henning.staib@direktzu.de>
* Support/bin/list_columns.rb: added support for namespaced/nested models
sort keys when choosing model
2010-06-10 Carlos Brando <eduardobrando@gmail.com>
* Snippets/member routes.tmSnippet, Snippets/resources collection.tmSnippet,
Snippets/resources.tmSnippet, info.plist: Added resources, collection, and
member snippets.
2010-06-09 Carlos Brando <eduardobrando@gmail.com>
* Support/lib/rvm/rvm.rb: Changed the way to get the current RVM version.
2010-06-08 Carlos Brando <eduardobrando@gmail.com>
* Commands/List columns of a model.tmCommand, Snippets/lia.plist,
Snippets/liai.plist, Snippets/lic.plist, Snippets/lica.plist,
Snippets/licai.plist, Snippets/link_to (nested path plural).tmSnippet,
Snippets/link_to (nested path).tmSnippet, Snippets/link_to (path
plural).tmSnippet, Snippets/link_to (path).tmSnippet, Snippets/link_to
model.tmSnippet: Disabled to show error messages when canceling autocomplete.
Changed tab trigger for link_to snippets.
2010-06-07 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* README.md: Updated readme typo, thanks to ryansobol for spotting the error
2010-06-01 Carlos Brando <eduardobrando@gmail.com>
* Support/lib/rvm/rvm.rb: Updated to RVM 0.1.37.
2010-05-31 Carlos Brando <eduardobrando@gmail.com>
* Support/lib/rvm/rvm.rb: Update for RVM 0.1.36.
2010-05-28 Carlos Brando <eduardobrando@gmail.com>
* Commands/Autocomplete Routes.tmCommand,
Support/bin/routes_auto_complete.rb, info.plist: Autocomplete Routes. =>
routesrc + <tab> Does anyone have a better suggestion for the tab trigger?
2010-05-27 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/Open Recent Migrations.tmCommand: Updated recent migrations
command to accept keyboard shortcuts to open links to recent migrations
2010-05-28 Carlos Brando <eduardobrando@gmail.com>
* Commands/List columns of a model.tmCommand, Support/bin/list_columns.rb:
Remove .<tab>.
2010-05-27 Carlos Brando <eduardobrando@gmail.com>
* Commands/List columns of a model.tmCommand, Commands/Set RVM.tmCommand,
Support/bin/list_columns.rb: Refactoring list_columns.
* Commands/Set RVM.tmCommand, Support/lib/rvm/change_rvm,
Support/lib/rvm/change_rvm.rb, Support/lib/rvm/check_rvm_version.rb,
Support/lib/rvm/choose_rvm.rb, Support/lib/rvm/rvm.rb,
Support/lib/rvm/rvm_textmate: Refactoring 'Set RVM...' snippet.
2010-05-26 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Syntaxes/Ruby on Rails.plist: Updated language to respect contexts with
single quotes
2010-05-26 Carlos Brando <eduardobrando@gmail.com>
* Snippets/match.tmSnippet: Fix match snippet.
2010-05-25 Carlos Brando <eduardobrando@gmail.com>
* Support/bin/list_columns.rb, Support/lib/rvm/check_rvm_version.rb,
Support/lib/rvm/choose_rvm.rb: Check if RVM isn't outdated.
* Snippets/belongs_to (bt).plist, Support/lib/rvm/choose_rvm.rb: Changed
belongs_to scope and fixed rvm gemsets list for rvm 0.1.33
2010-05-24 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/Open Recent Migrations.tmCommand, README.md: Updated recent
migrations window to close when you click on a link
* Commands/Open Recent Migrations.tmCommand: Updated recent migrations to
show the last 10 migrations files (instead of 5)
2010-05-23 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/Open Recent Migrations.tmCommand, Commands/Open
development_log.tmCommand, Commands/Open production_log.tmCommand,
Commands/Open test_log.tmCommand, info.plist: Added command that lists last 5
migrations with links to open them (⌥⇧+M)
2010-05-21 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/Tail develoment_log.tmCommand, Commands/Tail
production_log.tmCommand, Commands/Tail test_log.tmCommand: Updated tail log
commands to use tmp files rather than clipboard
2010-05-21 Carlos Brando <eduardobrando@gmail.com>
* README.md: Updated README.
2010-05-21 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/Open development_log.tmCommand, Commands/Open
production_log.tmCommand, Commands/Open test_log.tmCommand: Changed open log
command to clear and open log
2010-05-20 Carlos Brando <eduardobrando@gmail.com>
* Support/bin/list_columns.rb: Improved Rails checking.
* Support/bin/list_columns.rb: be bundler aware for rails existance
Conflicts: Support/bin/list_columns.rb
* Support/bin/list_columns.rb: --author x
* Support/bin/list_columns.rb: Fixed issue #6: private method ’sub’
called for nil::Nilclass
2010-05-19 Carlos Brando <eduardobrando@gmail.com>
* Commands/List columns of a model.tmCommand, Support/bin/list_columns.rb:
Thanks ramonrails: Added new activation: dot+tab for attributes autocomplete.
* Snippets/match.tmSnippet, Syntaxes/Ruby on Rails.plist, info.plist: Added
match snippet and adjusts meta.rails.routes for Rails 3.
* Support/bin/list_columns.rb: Added comment.
* Support/bin/list_columns.rb: Check if Rails is installed.
* Support/bin/list_columns.rb: Fixed a syntax error that prevented the column
list to be loaded from schema. Thanks ramonrails.
* Support/bin/list_columns.rb: Fixed Untitled window error.
* Commands/Set RVM.tmCommand, Support/lib/rvm/change_rvm.rb,
Support/lib/rvm/choose_rvm.rb,
Support/lib/rvm/nib/SetGemset.nib/designable.nib,
Support/lib/rvm/nib/SetGemset.nib/keyedobjects.nib,
Support/lib/rvm/rvm_textmate: Added "Set a new gemset..." option.
2010-05-18 Carlos Brando <eduardobrando@gmail.com>
* Support/lib/rvm/change_rvm.rb, Support/lib/rvm/choose_rvm.rb,
Support/lib/rvm/create_gemset.sh: Added create gemset option
* Commands/Set RVM.tmCommand, Support/bin/list_columns.rb,
Support/lib/rails/text_mate.rb, Support/lib/rvm/choose_rvm.rb: Removed
ellipsis character.
2010-05-17 Carlos Brando <eduardobrando@gmail.com>
* Support/bin/list_columns.rb: Update cache when set a model for an unknown
variable name.
* Support/bin/list_columns.rb: Accepts user and current_user, product and
first_product, etc.. check for underscored names.
* Support/lib/rvm/change_rvm: Remove unnecessary line.
2010-05-15 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* README.md: Updated Readme
* README.md: Updated readme
2010-05-15 Carlos Brando <eduardobrando@gmail.com>
* Commands/Set RVM.tmCommand, Support/lib/rvm/change_rvm,
Support/lib/rvm/change_rvm.rb, Support/lib/rvm/choose_rvm.rb, info.plist:
Added new command "Set RVM...".
* Support/bin/generate.rb, Support/bin/rake_helper.rb,
Support/lib/rails/text_mate.rb: Fixed some Ruby 1.9 errors. String#to_a
changed to #split with arguments.
2010-05-14 Carlos Brando <eduardobrando@gmail.com>
* Commands/List columns of a model.tmCommand, Support/lib/rvm/choose_rvm.rb,
Support/lib/rvm/rvm_textmate, Support/lib/rvm_textmate: Fixed bugs when using
RVM.
2010-05-14 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Snippets/accessible_constant.tmSnippet,
.../hash_indexed_by_readable_constants.tmSnippet,
Snippets/readable_constant.tmSnippet, Snippets/writable_constant.tmSnippet,
info.plist: Added constant helper snippets
2010-05-14 Carlos Brando <eduardobrando@gmail.com>
* Commands/List columns of a model.tmCommand, Support/lib/rvm_textmate: If
.rvmrc file exists change to the right RVM config for project.
* Support/bin/list_columns.rb: Improved word method.
2010-05-12 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* .../Symbol List: Factory Names.tmPreferences,
Snippets/redirect_to.tmSnippet, Syntaxes/Ruby on Rails.plist, info.plist:
Updated rails bundle to show factory names in symbol list
* Commands/Open development_log.tmCommand, Commands/Open
production_log.tmCommand, Commands/Open test_log.tmCommand, Commands/Tail
develoment_log.tmCommand, Commands/Tail production_log.tmCommand,
Commands/Tail test_log.tmCommand: Updated log viewer commands to work in haml
scope
2010-05-12 Carlos Brando <eduardobrando@gmail.com>
* info.plist: Reorganized menu.
* Snippets/else (ERB).tmSnippet, Snippets/gem :git.tmSnippet,
Snippets/gem.tmSnippet, Snippets/if (ERB).tmSnippet,
Support/bin/list_columns.rb, info.plist: Improved list_columns and added two
new bundles.
2010-05-06 Carlos Brando <eduardobrando@gmail.com>
* README.md: Changed README
* Support/bin/list_columns.rb: Fixed when used in a view.
2010-04-27 Carlos Brando <eduardobrando@gmail.com>
* Support/bin/list_columns.rb: Fixed error when cannot access database.
* info.plist: Changed list.
2010-04-26 Carlos Brando <eduardobrando@gmail.com>
* Support/bin/list_columns.rb: Remove spaces.
* Support/bin/list_columns.rb: Remove second_time argument.
* Support/bin/go_to_file_on_current_line.rb, Support/bin/list_columns.rb:
Improve error system of list_columns command.
* Commands/List columns of a model.tmCommand, Support/bin/list_columns.rb:
Changed the way to store the database's columns in the cache.
2010-04-22 Carlos Brando <eduardobrando@gmail.com>
* Support/bin/list_columns.rb: Added associations in list_columns command
menu.
* Commands/List columns of a model.tmCommand, Support/bin/list_columns.rb:
Added new command to list columns of a model.
2010-04-09 Carlos Brando <eduardobrando@gmail.com>
* Snippets/config_gem.tmSnippet, Snippets/gem :git.tmSnippet,
Snippets/gem.tmSnippet, info.plist: New snippets for Bundler
* Snippets/end.tmSnippet: Remove dash of ERB tags as default.
2010-03-31 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Snippets/respond_to.tmSnippet: Removed conflicting tab trigger
* Commands/Open development_log.tmCommand, Commands/Tail
production_log.tmCommand, Commands/Tail test_log.tmCommand: Fixed the open /
tail log commands
2010-03-22 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/Tail develoment_log.tmCommand, Commands/Tail
production_log.tmCommand, Commands/Tail test_log.tmCommand, info.plist: Added
command to tail rails logs
2010-03-19 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/Open development_log.tmCommand, Commands/Open
production_log.tmCommand, Commands/Open test_log.tmCommand,
Snippets/logger.tmSnippet, info.plist: Added log snippet
2010-03-15 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Snippets/Rails_root.tmSnippet, info.plist: Added Rails.root snippet
* Commands/Open development_log.tmCommand, Commands/Open
production_log.tmCommand, Commands/Open test_log.tmCommand: Updated view log
commands shortcut key so it does not conflict
2010-03-09 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/Open development_log.tmCommand, Commands/Open
production_log.tmCommand, Commands/Open test_log.tmCommand: Fixed bug in the
open log commands
* Commands/Open development_log.tmCommand, Commands/Open
production_log.tmCommand, Commands/Open test_log.tmCommand: Open log commands
check project directory first
2010-03-04 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Snippets/create plural_path [POST].tmSnippet, .../delete singular_path(id)
[DESTROY].tmSnippet, Snippets/edit edit_singular_path [GET].tmSnippet,
Snippets/index - plural_path [GET].tmSnippet, Snippets/new
new_singular_path [GET].tmSnippet, Snippets/show singular_path(id)
[GET].tmSnippet, Snippets/update singular_path(id) [PUT].tmSnippet,
info.plist: Added rest path snippets
2010-03-04 Carlos Brando <eduardobrando@gmail.com>
* Snippets/config_gem.tmSnippet: Remove "gemcutter.org" as a source of
config.gem.
2010-03-04 Dr Nic Williams <drnicwilliams@gmail.com>
* Snippets/$LABEL.tmSnippet, Snippets/RAILS_DEFAULT_LOGGER.debug (rdb).plist,
Snippets/logger_debug.tmSnippet, info.plist: Change RAILS_DEFAULT_LOGGER to
Rails.logger, and change tab to 'deb' [fixes #12]
* Snippets/Test Assert Redirected To (art).plist, ...rt_redirected_to (nested
path plural).tmSnippet, .../assert_redirected_to (nested path).tmSnippet,
.../assert_redirected_to (path plural).tmSnippet,
Snippets/assert_redirected_to (path).tmSnippet: Change some tab stops for
assert_* snippets so they all start with 'as' tab trigger.
* Commands/Install Bundled Plugin.plist, Support/bin/list_plugins.rb,
Support/templates/list_plugins.rhtml: remove the 'Install Plugins' command +
code as it's old, uses an API which is old, and people are moving to gems and
not just plugins
* Commands/Install Bundled Plugin.plist, Support/bin/list_plugins.rb: Use
File.read to get template contents for ERB.new; instead of File.open
* Support/plugins/footnotes-edge/init.rb,
.../footnotes-edge/lib/textmate_backtracer.rb,
.../footnotes-edge/lib/textmate_footnotes.rb,
.../footnotes-edge/lib/textmate_initialize.rb,
.../templates/rescues/template_error.erb,
.../plugins/footnotes-edge/test/mock_controller.rb,
.../footnotes-edge/test/textmate_footnotes_test.rb,
Support/plugins/footnotes/init.rb,
.../plugins/footnotes/lib/textmate_backtracer.rb,
.../plugins/footnotes/lib/textmate_footnotes.rb,
.../plugins/footnotes/lib/textmate_initialize.rb,
.../templates/rescues/template_error.rhtml,
Support/plugins/footnotes/test/mock_controller.rb,
.../footnotes/test/textmate_footnotes_test.rb: removing plugins folder as
they now have a healthy happy life in own github repo
* Commands/Generate.plist, Support/lib/Builder.rb: inserting a dummy
Builder.rb at the top of the to prevent the stack overflow issues; hopefully
* Support/bin/generate.rb, Support/lib/rails/generate.rb,
Support/test/test_generator.rb: use a generator's Usage in the 'Call Generate
Script' dialog
* Support/lib/rails/generate.rb, Support/test/test_generator.rb: remove some
unnecessary stuff
* Commands/Generate.plist, Support/bin/generate.rb,
Support/lib/rails/generate.rb, Support/test/test_generator.rb: Assuming the
infamous Builder.rb doesn't exist, 'Call Generate Script' is finding all
generators
* Support/test/app_fixtures/.gitignore,
Support/test/app_fixtures/config/boot.rb,
Support/test/app_fixtures/config/database.yml,
Support/test/app_fixtures/config/environment.rb,
.../config/environments/development.rb,
Support/test/app_fixtures/config/routes.rb, Support/test/test_generator.rb:
fixed test_generator tests by adding into app_fixtures more files required by
script/generate & rails2 apps
* Support/test/app_fixtures/script/generate: trivial change: updated fixture
script/generate to what is generated by rails 2.3.5
* Support/test/test_rails_path.rb: Fixed test_rails_path.rb tests by putting
back in expected, albeit empty, fixture folders that it tests for but were
lost in the transition to git (probably)
* Support/bin/create_partial_from_selection.rb: Changed != prefix to just =
for extracted partials in haml
2010-03-01 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/Open development_log.tmCommand, Commands/Open
production_log.tmCommand, Commands/Open test_log.tmCommand: Updated open log
command to use full path to mate
* Snippets/default_scope.tmSnippet, Snippets/named_scope lambda.tmSnippet,
Snippets/named_scope.tmSnippet: Updated snippets for scopes. named_scope
previous was nc changed to ns trigger
2010-02-26 Carlos Brando <eduardobrando@gmail.com>
* Snippets/image_tag.tmSnippet: A little improvement in image_tag snippet.
2010-02-27 Klaus Breyer <bannii@gmail.com>
* Snippets/image_tag.tmSnippet, info.plist: added image_tag
2010-02-23 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Snippets/Test Assert Redirected To (art).plist, Snippets/Test Assert
Response (are).plist, Snippets/assert_difference.tmSnippet,
...rt_redirected_to (nested path plural).tmSnippet, .../assert_redirected_to
(nested path).tmSnippet, .../assert_redirected_to (path plural).tmSnippet,
Snippets/assert_redirected_to (path).tmSnippet: Update asset snippets
2010-02-18 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Commands/Open development_log.tmCommand, Commands/Open
production_log.tmCommand, Commands/Open test_log.tmCommand, info.plist: Added
open logs commands
2010-02-10 Josh Symonds <jsymonds@backstopsolutions.com>
* Support/bin/jump_to_method_definition.rb: Fixing error where, if you're in
a gem, it finds methods from that gem twice
2010-02-10 Tim Galeckas <timgaleckas@chromedome-lite.backstopsolutions>
* Support/lib/rails/rails_path.rb: finished a todo
2010-02-10 Josh Symonds <jsymonds@backstopsolutions.com>
* Support/bin/jump_to_method_definition.rb: Even better @-variable finding
from views to controllers
* Support/bin/jump_to_method_definition.rb: Making the finder a class and
introducing better @-variable finding
* Support/bin/jump_to_method_definition.rb: Commiting in some of Tim's
sensible changes
2010-02-10 Tim Galeckas <timgaleckas@chromedome-lite.backstopsolutions>
* Support/bin/jump_to_method_definition.rb: more corner cases and cleanup.
restructured the code to search for scoped module/classes in the future
2010-02-10 Tim Galeckas <timgaleckas@chromedome-lite.local>
* Support/bin/jump_to_method_definition.rb: now with classes modules
variables and more?
2010-02-09 Tim Galeckas <timgaleckas@chromedome-lite.local>
* Commands/Cucumber All.tmCommand, Commands/Cucumber OK.tmCommand,
info.plist: cucumber support
2010-02-09 Josh Symonds <jsymonds@backstopsolutions.com>
* Support/bin/jump_to_method_definition.rb: Prettifying the find screen a
little bit
* Support/bin/jump_to_method_definition.rb: Removing a bit of extraneous
white space from returned methods
* Support/bin/jump_to_method_definition.rb: Removing rails_root from returned
location string since it's probably not necessary
* Support/bin/jump_to_method_definition.rb: Adding in a column summarizing
what we've found
* Support/bin/jump_to_method_definition.rb: Extracting regular expressions a
bit
* Support/bin/jump_to_method_definition.rb: Making the Ruby a bit more
Ruby-like
* Support/bin/jump_to_method_definition.rb: Checking for methods defined on
self as well
* Support/bin/jump_to_method_definition.rb: Cleaning things up a little bit
* Support/bin/jump_to_method_definition.rb: A little bit more fancy find-fu
* Support/bin/jump_to_method_definition.rb: Adding some fancy find-fu to get
only files we'd actually want to search
* Support/bin/jump_to_method_definition.rb: Successful pure Ruby
implementation
2010-02-08 Josh Symonds <jsymonds@backstopsolutions.com>
* Commands/Jump to Method Definition.tmCommand,
Support/bin/jump_to_method_definition.rb: Making an attractive HTML window
popup when multiple definitions are found
* Commands/Jump to Method Definition.tmCommand,
Support/bin/jump_to_method_definition.rb: Adding a new find command bound to
control-f to automatically lookup a method
2010-02-03 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Syntaxes/Ruby on Rails.plist: Added shoulda support to functional tests
* Syntaxes/Ruby on Rails.plist: Updated rails language for better syntax
highlight for shoulda and support for contexts in the symbol list
2010-02-02 Philippe Huibonhoa <philippe.huibonhoa@bookrenter.com>
* Syntaxes/Ruby on Rails.plist: Updated language to support shoulda
2010-01-07 i0n <ianalexanderwood@gmail.com>
* README.md: removed note on ruby 1.9 migration bug as its now fixed
* ABOUT: added my name to contributors!
* Support/bin/insert_add_column_or_create_table.rb: fixed unprepend method as
well. Not sure where or when this method gets called but it was using to_a as
well which would have made it incompatible with ruby 1.9
* Support/bin/insert_add_column_or_create_table.rb,
Support/lib/rails/buffer.rb: squashed remove_column double tab bug
* Support/bin/intelligent_migration_snippet.rb: fixed layout of migration
commands, discovered bug in remove_column command when tabbing to add
add_column as well. Looks like it is because of the to_a method as well. Will
investigate
* Support/bin/intelligent_migration_snippet.rb: first working version of
migration bundle under 1.9 formatting could still do with some work
* Support/bin/intelligent_migration_snippet.rb: removed to_a method calls so
no longer errors out. doesnt work yet either though ;
* README.md: added notes to README
2009-12-06 Carlos Brando <eduardobrando@gmail.com>
* Snippets/config_gem.tmSnippet: Improve config.gem snippet.
2009-11-29 Bodaniel Jeanes and Dr Nic Williams <dev+bjeanes+drnic@mocra.com>
* Support/lib/rails/rails_path.rb: detect haml from environment.rb too
2009-11-20 Carlos Brando <eduardobrando@gmail.com>
* Snippets/alias_attribute.tmSnippet, info.plist: Added alias_attribute
snippet.
2009-11-12 Carlos Brando <eduardobrando@gmail.com>
* Snippets/layout.tmSnippet, info.plist: Added layout snippet.
2009-11-11 Carlos Brando <eduardobrando@gmail.com>
* Snippets/before_filter.tmSnippet, info.plist: before_filter snippet.
2009-11-10 Carlos Brando <eduardobrando@gmail.com>
* info.plist: Rearrange environment's snnipets.
* Snippets/config_gem.tmSnippet: Change config.gem to gemcutter.
* Snippets/config_gem.tmSnippet: Change config.gem to gemcutter.
2009-09-24 Dr Nic Williams <drnicwilliams@gmail.com>
* README, README.md: starting to collect contributors in README
* Commands/Migrate to Previous Version.tmCommand: makes "Migrate to Previous
Version" compatible with timestamped migrations [kamk - Kamil Kukura]
2009-09-16 Tobias Schwab <tobstarr@gmail.com>
* Support/lib/rails/command_go_to_file.rb: command_go_to_file: open correct
template when only erb version exists but project uses haml by default
2009-09-15 Tobias Schwab <tobstarr@gmail.com>
* Support/bin/create_partial_from_selection.rb:
create_partial_from_selection: use same extension as template for partial
(e.g. .haml), keep identing for render line, strip prefix identing in partial
2009-07-11 Dr Nic Williams <drnicwilliams@gmail.com>
* Snippets/config_gem.tmSnippet, info.plist: added 'config.gem' snippet
2009-06-30 Carlos Brando <eduardobrando@gmail.com>
* Snippets/validates_presence_of if (vpif) 2.plist: Fixed
"validates_presence_of if" snippet.
2009-05-06 Lawrence Pit <lawrence.pit@gmail.com>