public
Description: Rake tasks to make working with Rails apps a bit easier.
Homepage:
Clone URL: git://github.com/napcs/lazy_developer.git
lazy_developer / CHANGES
100644 56 lines (55 sloc) 2.31 kb
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
1.1.9
 * Fixed version string to prevent collisions with other libraries.
1.1.8
 * nuke now assumes singular inflection for model files of given name
 * fixtures are nuked as well
 * now nuking test/unit/helpers tests along with the model
 * list of deleted files now prints to command line
 * removed usage of 'git rm' as unnecessary & did not work with files untracked by git
1.1.7
 * Added support for checking coverage for model specs, controller specs, view specs, helper specs, and specs for files in the lib folder.
 * copied rcov:* tasks to "test" namespace and deprecating old ones.
1.1.6
 * Fix table names and column names not computing properly for habtm associations
 * Fixed major problems with db:to_yaml
   * fixture names now use the id rather than an incrementing number
   * Offset for chunking was completely bad. Thanks to Kevin for helping me fix it.
 * Should now work for Rails versions prior to 2.0.
 * db:from_yaml now tells you what's importing
1.1.5
 * Small bug fix for the db:compact task (dtrueman)
1.1.4
 * Delete models, views, controllers and associated files with nuke
 * Collapse large migration sets into a single migration to keep your code cleaner.
 * Fixed bug preventing Test::Unit tests from running with the test:units:<testname> feature.
1.1.3
 * Support for Rails 2.3 - No longer breaks Rake tasks.
 * Minor fix for exception raised when dumping empty tables
1.1.2
 * db:migrate:up and db:migrate:down now keep the
 test database in sync (Christopher Warren)
1.1.1
 * Updated export tool to specify what's happening so users have feedback on longer running tasks
 * updated export to grab 1000 rows at a time from the table instead of all records at once to save memory
1.1.0
 * Renamed db:import and db:export to db:from_yaml to db:to_yaml
 * fixtures are now dumped to production_data instead of test/fixtures/live
 * removed gem install system - no need for this now that Rails does it
1.0.5
 * RSpec support
 * Improved rcov (gisikw)
1.0.4
 * SVN library added
1.0.3
 * db:export and db:import added! Migrate databases from one type to another!
1.0.2
 * Plugins added
 * gem installer added
 * RCov tasks added (gisikw)
1.0.1
 * magical test runner for test:unit
 * cleanup task added
 *remigrate task added
1.0
===
 * rake db:migrate now runs db:test:clone