Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | in regexps, the dot in a character class is not a metacharacter | Xavier Noria | 2010-10-15 | 1 | -1/+1 | |
| | ||||||
* | Use railtie_name to correctly get name from plugins | Piotr Sarnacki | 2010-10-14 | 1 | -1/+1 | |
| | ||||||
* | Update documentation for new tasks | Piotr Sarnacki | 2010-10-14 | 1 | -7/+8 | |
| | ||||||
* | Add task foo:install (where foo is plugin) as a shortcutinstall:migrations ↵ | Piotr Sarnacki | 2010-10-14 | 1 | -0/+6 | |
| | | | | and foo:install:assets | |||||
* | Added foo:install:assets task that copies assets from plugins public ↵ | Piotr Sarnacki | 2010-10-14 | 1 | -5/+5 | |
| | | | | | | | | | | | directory to application's public directory This is the most simple and naive approach: just copy every files from engine to app. The only exception is when file has changed, in that case developer will be asked if he wants to rename the field. There is no need to make this task more sophisticated as 3.1 will be shipped with better assets handling and it will be the default way to handle things. | |||||
* | Do not treat information about skipped migrations as WARNINGs but as a ↵ | Piotr Sarnacki | 2010-10-14 | 1 | -0/+6 | |
| | | | | NOTEs, also puts to stdin | |||||
* | Updated DOCS for engines and added a couple TODOs. Also, commented internal ↵ | José Valim | 2010-10-11 | 1 | -34/+48 | |
| | | | | railties rake tasks description. | |||||
* | Add 'foo:install:migrations' task to copy migrations from foo engine | Piotr Sarnacki | 2010-10-09 | 1 | -0/+14 | |
| | ||||||
* | Rename namespace method to isolate_namespace. | Piotr Sarnacki | 2010-10-09 | 1 | -10/+10 | |
| | | | | | | | This change caused by confusion caused by calling engine "namespaced". Stuff inside engine can be namespaced for every engine. This method is not actually namespacing anything, it's isolating engine within the given namespace. | |||||
* | Refactored routes reloading to use RouteSet#append instead keeping block in ↵ | Piotr Sarnacki | 2010-10-08 | 1 | -5/+3 | |
| | | | | | | Engine Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Merge branch 'master' of git://github.com/lifo/docrails | Xavier Noria | 2010-10-06 | 1 | -1/+1 | |
|\ | ||||||
| * | Fixed typo in engine documentation | Thomas McDonald | 2010-10-06 | 1 | -1/+1 | |
| | | ||||||
* | | Provide a cleaner syntax for paths configuration that does not rely on ↵ | José Valim | 2010-10-06 | 1 | -27/+32 | |
| | | | | | | | | method_missing. | |||||
* | | Use RbConfig instead of Config for 1.9.3 compatibility. | José Valim | 2010-10-05 | 1 | -1/+1 | |
| | | ||||||
* | | Add documentation on app_generators | Piotr Sarnacki | 2010-10-03 | 1 | -0/+20 | |
| | | ||||||
* | | Move routes_reloader to a class: RoutesReloader | Piotr Sarnacki | 2010-09-30 | 1 | -1/+1 | |
| | | ||||||
* | | Properly reload routes defined in class definition | Piotr Sarnacki | 2010-09-30 | 1 | -1/+6 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sometimes it's easier to define routes inside Engine or Application class definition (e.g. one file applications). The problem with such case is that if there is a plugin that has config/routes.rb file, it will trigger routes reload on application. Since routes definition for application is not in config/routes.rb file routes_reloader will fail to reload application's routes properly. With this commit you can pass routes definition as a block to routes method, which will allow to properly reload it: class MyApp::Application < Rails::Application routes do resources :users end end | |||||
* | | Do not overwrite _railtie method on namespace while creating isolated engine ↵ | Piotr Sarnacki | 2010-09-30 | 1 | -12/+13 | |
|/ | | | | | | | | | or application. In order to run Engine as standalone application, you will need Rails::Application instance in the same namespace that engine one. It's very important to leave _railtie bound to whatever used "namespace" method first. | |||||
* | List all of isolated engine changes | Piotr Sarnacki | 2010-09-20 | 1 | -3/+21 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Strengthen documantation on engine's migrations and seed data | Piotr Sarnacki | 2010-09-20 | 1 | -0/+15 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Add helper for loading seed data for engine and application | Piotr Sarnacki | 2010-09-20 | 1 | -0/+9 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Add documentation on serving assets from engine strategies | Piotr Sarnacki | 2010-09-06 | 1 | -0/+10 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Removed deprecated router API from railties | Piotr Sarnacki | 2010-09-05 | 1 | -11/+0 | |
| | ||||||
* | Small tidy up on Rails::Engine. | José Valim | 2010-09-04 | 1 | -48/+49 | |
| | ||||||
* | I've changed that test along the way, it should actually stay without changes | Piotr Sarnacki | 2010-09-03 | 1 | -6/+6 | |
| | ||||||
* | Use default_scope in isolated Engines to not force user to scope his routes | Piotr Sarnacki | 2010-09-03 | 1 | -0/+2 | |
| | ||||||
* | engines_blank_point should always be the last initializer in Engine | Piotr Sarnacki | 2010-09-03 | 1 | -5/+5 | |
| | ||||||
* | We should avoid creating additional initializers when we can, adding them ↵ | Piotr Sarnacki | 2010-09-03 | 1 | -3/+1 | |
| | | | | makes boot process slower | |||||
* | Add some more docs on polymorphic_url with routes proxy | Piotr Sarnacki | 2010-09-03 | 1 | -0/+10 | |
| | ||||||
* | Include all helpers from non-namespaced engines | Piotr Sarnacki | 2010-09-03 | 1 | -2/+16 | |
| | ||||||
* | Get rid of static_paths method and instead configure paths for ↵ | Piotr Sarnacki | 2010-09-03 | 1 | -0/+7 | |
| | | | | ActionDispatch::Static in initializers | |||||
* | Documented mounted helpers | Piotr Sarnacki | 2010-09-03 | 1 | -0/+29 | |
| | ||||||
* | Document engine_name | Piotr Sarnacki | 2010-09-03 | 1 | -0/+16 | |
| | ||||||
* | Added documentation for namespaced Engine | Piotr Sarnacki | 2010-09-03 | 1 | -2/+34 | |
| | ||||||
* | Add table_name_prefix to Engine's namespace automatically | Piotr Sarnacki | 2010-09-03 | 1 | -0/+8 | |
| | ||||||
* | Rename isolated_engine_for to namespace | Piotr Sarnacki | 2010-09-03 | 1 | -3/+3 | |
| | ||||||
* | Include application's helpers and router helpers by default, but include ↵ | Piotr Sarnacki | 2010-09-03 | 1 | -0/+9 | |
| | | | | engine's ones for controllers inside isolated namespace | |||||
* | Engine's assets are now served with ActionDispatch::Static | Piotr Sarnacki | 2010-09-03 | 1 | -5/+4 | |
| | ||||||
* | Set asset_path to engine_name by default | Piotr Sarnacki | 2010-09-03 | 1 | -1/+5 | |
| | ||||||
* | Added tests for railtie_name and aliased it in engine as engine_name | Piotr Sarnacki | 2010-09-03 | 1 | -0/+2 | |
| | ||||||
* | Added ability to set asset_path for engines | Piotr Sarnacki | 2010-09-03 | 1 | -2/+21 | |
| | ||||||
* | Added documentation on endpoint, middeware stack and routes for Engine | Piotr Sarnacki | 2010-09-03 | 1 | -0/+60 | |
| | ||||||
* | Fix url generation for mounted Engine | Piotr Sarnacki | 2010-09-03 | 1 | -7/+2 | |
| | | | | | | | | | I added integration tests for generating urls in Engine and application and tweaked Engines to fully cooparate with new router's behavior: * Rails.application now sets ORIGINAL_SCRIPT_NAME * Rails.application also sets its routes as env['action_dispatch.parent_routes'] * Engine implements responds_to? class method to respond to all the instance methods, like #routes | |||||
* | Pass routes via env['action_dispatch.routes'], it's needed by routes to ↵ | Piotr Sarnacki | 2010-09-03 | 1 | -1/+7 | |
| | | | | determine if it should generate prefix for mounted apps | |||||
* | Move singleton pattern to Railtie and remove Engine::Configurable and ↵ | Piotr Sarnacki | 2010-09-03 | 1 | -12/+21 | |
| | | | | Application::Configurable in favor of unified Railtie::Configurable | |||||
* | Removed most of deprecated stuff from Application and Engine | Piotr Sarnacki | 2010-09-03 | 1 | -3/+0 | |
| | ||||||
* | Allow Engines loading its own environment file from config/environments | Piotr Sarnacki | 2010-09-03 | 1 | -0/+9 | |
| | ||||||
* | Removed ActionDispatch::Static, but left empty MiddlewareStack to unify app ↵ | Piotr Sarnacki | 2010-09-03 | 1 | -6/+8 | |
| | | | | method between Engine and Application | |||||
* | Engine can now serve files with ActionDispatch::Static | Piotr Sarnacki | 2010-09-03 | 1 | -1/+10 | |
| | ||||||
* | Engine sets routes as default rack endpoint if no endpoint was given | Piotr Sarnacki | 2010-09-03 | 1 | -2/+5 | |
| |