Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 344
- Log:
Massive changeset which brings the old, ROOL customised Instiki
version up to date, but without any ROOL customisations in this
latest checked-in version (which is 0.19.1). This is deliberate,
so that it's easy to see the changes made for the ROOL version
in a subsequent changeset. The 'app/views/shared' directory is not
part of Instiki but is kept to maintain the change history with
updated ROOL customisations, some of which involve the same files
in that same directory.
- Author:
- rool
- Date:
- Sat Mar 19 19:52:13 +0000 2011
- Size:
- 2987 Bytes
1 | = Description |
2 | |
3 | This plugin is a super lightweight tool used to manage all your fixtures, whether it is exporting or importing them. |
4 | |
5 | So if you want to export all your data from your production server into your development environment, this will simplify the process without having to load up your database manager. |
6 | |
7 | Similarly, if you want to import a selected set of Models, you can do that using the appropriate tasks. |
8 | |
9 | = INSTALLATION |
10 | |
11 | [%] script/plugin discover |
12 | [%] script/plugin install manage_fixtures |
13 | |
14 | = USAGE |
15 | |
16 | Create YAML test fixtures from data in an existing database. Defaults to development database. Set RAILS_ENV to override. |
17 | [%] rake db:fixtures:export_all |
18 | |
19 | Create YAML test fixtures for a specific table(s) from data in an existing database. Defaults to development database. Set RAILS_ENV to override. |
20 | [%] rake db:fixtures:export_for_tables TABLES=foos[,bars] |
21 | |
22 | Create YAML text fixtures based on a specific SQL query |
23 | [%] rake db:fixtures:export_using_query SQL="select * from foo where id='bar'" FIXTURE_NAME=foo |
24 | |
25 | Import the YAML test fixtures for specific models from data in an existing database. Defaults to development database. Set RAILS_ENV to override. |
26 | [%] rake db:fixtures:import_for_models MODELS=Foo[,Bar,Land] |
27 | |
28 | Import all YAML test fixtures for all of the tables from data in an existing database. Defaults to development database. Set RAILS_ENV to override. |
29 | [%] rake db:fixtures:import_all |
30 | |
31 | Import all YAML test fixtures for all of the tables from data in an existing database. Defaults to development database. Set RAILS_ENV to override. |
32 | [%] rake db:fixtures:import_for_tables TABLES=foos[,bars,land] |
33 | |
34 | = AUTHORS |
35 | |
36 | Nathaniel Brown - nshb@inimit.com |
37 | Chris McGrath |
38 | |
39 | = BUGS |
40 | |
41 | Please report any bugs or feature enhancements to http://dev.toolbocks.com |
42 | |
43 | = LICENSE |
44 | |
45 | Copyright (c) 2006 Nathaniel Brown |
46 | Copyright (c) 2006 Chris McGrath |
47 | |
48 | This is the MIT license, the license Ruby on Rails itself is licensed |
49 | under. |
50 | |
51 | Permission is hereby granted, free of charge, to any person obtaining |
52 | a copy of this software and associated documentation files (the |
53 | "Software"), to deal in the Software without restriction, including |
54 | without limitation the rights to use, copy, modify, merge, publish, |
55 | distribute, sublicense, and/or sell copies of the Software, and to permit |
56 | persons to whom the Software is furnished to do so, subject to the |
57 | following conditions: |
58 | |
59 | The above copyright notice and this permission notice shall be included |
60 | in all copies or substantial portions of the Software. |
61 | |
62 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
63 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
64 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
65 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY |
66 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, |
67 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE |
68 | OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |