aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/fixtures/plugins
Commit message (Collapse)AuthorAgeFilesLines
* Scaffolding generates new routing dsl examplesJoshua Peek2009-12-091-1/+1
|
* I18n support for pluginsAntonio Tapiador del Dujo2009-08-301-0/+2
| | | | | | | | | | Rails will now automatically add locale files found in any engine's locale directory to the I18n.load_path (i.e. files that match the glob pattern "config/locales/**/*.{rb,yml}" relative to engine directories). [#2325 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Search for generators on vendorized plugins and gems.José Valim2009-07-041-4/+0
|
* Raise LoadError instead of a runtime exception [#1498 state:resolved]karmi2009-03-071-1/+1
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Metal can now line in plugins under app/metal [#2045 state:committed]Matthew Rudy Jacobs2009-02-271-0/+10
| | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Added view path support for engines [DHH]David Heinemeier Hansson2008-11-271-1/+1
|
* Added that config/routes.rb files in engine plugins are automatically loaded ↵David Heinemeier Hansson2008-11-264-0/+10
| | | | (and reloaded when they change in dev mode) [DHH]
* Make plugins initialize also from rails/init.rb to ensure consistency with ↵Jacek Becela2008-06-083-0/+10
| | | | | | gems used as plugins [#272 state:resolved]
* Use .gitignore as the convention for dummy file names.Joshua Peek2008-04-243-0/+0
|
* Add .empty files to empty directories so git preserves them.Joshua Peek2008-04-213-0/+0
|
* Add back empty plugin folders that were lost when we moved to git.Joshua Peek2008-04-213-0/+0
|
* Missing test dataDavid Heinemeier Hansson2008-03-271-0/+2
| | | | git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9100 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Fixed that script/generate would not look for plugin generators in ↵David Heinemeier Hansson2008-03-132-0/+8
| | | | | | plugin_paths (closes #11000) [glv] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9017 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Split plugin location and loading out of the initializer and into a new ↵Marcel Molina2007-03-021-0/+0
| | | | | | Plugin namespace, which includes Plugin::Locater and Plugin::Loader. The loader class that is used can be customized using the config.plugin_loader option. Those monkey patching the plugin loading subsystem take note, the internals changing here will likely break your modifications. The good news is that it should be substantially easier to hook into the plugin locating and loading process now. [Marcel Molina Jr.] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6277 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* Raise in stubby/init.rb if it doesn't have access to directory or config. ↵Jeremy Kemper2005-11-071-1/+6
| | | | | | loaded_plugins is a set of plugin names (so it will be usable with multiple paths, gems, etc). git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2924 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
* New configuration option config.plugin_paths which may be a single path like ↵Jeremy Kemper2005-11-072-0/+4
the default 'vendor/plugins' or an array of paths: ['vendor/plugins', 'lib/plugins']. Plugins are discovered in nested paths, so you can organize your plugins directory as you like. Refactor load_plugin from load_plugins. Simplify initializer unit test. Closes #2757. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2904 5ecf4fe2-1ee6-0310-87b1-e25e094e27de