public
Description:
Homepage:
Clone URL: git://github.com/relevance/streamlined.git
rsanheim (author)
Tue Aug 26 21:14:51 -0700 2008
commit  0a759b33e3575eb67924fe1ad0074537f86c5a44
tree    c667c8f74c275111801a5fa1c8a8cd444d311f2d
parent  853abc4dbf1cc8eb700a5186f552ba5eb30c41e3
streamlined / README
ae75827a » rob 2007-12-06 add url 1 Streamlined - http://streamlinedframework.org/
ff772074 » justin 2007-02-06 adding plugin version to repo 2 ===================
b628a9e1 » matthew 2007-07-20 updated README with instruc... 3
e7e063d0 » justin 2007-02-07 first cut at README 4 Streamlined allows you to quickly generate useful user interfaces, declaratively.
ff772074 » justin 2007-02-06 adding plugin version to repo 5
b628a9e1 » matthew 2007-07-20 updated README with instruc... 6 Streamlined is not a code generator. It relies on you having an existing database schema,
7 controllers and models. If you have not done so yet, follow the instructions in the
8 "Rolling with Ruby on Rails Revisited" article series at...
e7e063d0 » justin 2007-02-07 first cut at README 9
b628a9e1 » matthew 2007-07-20 updated README with instruc... 10 http://www.onlamp.com/pub/a/onlamp/2006/12/14/revisiting-ruby-on-rails-revisited.html
e7e063d0 » justin 2007-02-07 first cut at README 11
b628a9e1 » matthew 2007-07-20 updated README with instruc... 12 ...to create a database and some controllers and models. Then, to make any controller
13 into a Streamlined controller, do the following:
7e30d957 » justin 2007-02-08 updated README to include i... 14
b628a9e1 » matthew 2007-07-20 updated README with instruc... 15 class MyNiftyController < ApplicationController
16 layout 'streamlined'
17 acts_as_streamlined
18
19 ...[anything else you want to do]
20 end
0c4d2bc5 » justin 2007-04-06 applying documentation patc... 21
1c859324 » rob 2007-07-18 update to use the new, clea... 22 More documentation can be found on the Streamlined wiki at http://trac.streamlinedframework.org/
0c4d2bc5 » justin 2007-04-06 applying documentation patc... 23
b628a9e1 » matthew 2007-07-20 updated README with instruc... 24 NOTE: You cannot extend ApplicationController with acts_as_streamlined, only children of ApplicationController.
25
26
27 == Running tests
28
29 Streamlined comes bundled with a set of unit and functional tests. You must install the latest
30 versions of the following gems to run these tests:
31
e8f07489 » muness 2007-12-05 documented more gems needed... 32 * flexmock (0.6.2 or higher)
8ee76061 » matthew 2007-07-20 ticket #50: swapped link_to... 33 * rcov (0.7.0.1 or higher)
e8f07489 » muness 2007-12-05 documented more gems needed... 34 * mocha (0.5.5)
35 * test-spec (0.4.0 or higher)
b628a9e1 » matthew 2007-07-20 updated README with instruc... 36
37 To initialize your local database and run the tests, execute:
38
39 > cd vendor/plugins/streamlined
40 > rake test:build_mysql_databases
41 > rake
42
43 If database creation task fails, make sure your config/database.yml file is configured properly
44 for your local installation of MySQL.
853abc4d » rsanheim 2008-08-02 add github links to readme 45
46 Clone or view the Streamlined Source at: http://github.com/relevance/streamlined/
47 Clone or view some sample apps as: http://github.com/relevance/streamlined_samples/