aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/app
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote branch 'mainstream/master'Pratik Naik2010-03-152-3/+9
|\
| * In app_generator, fix hardcoded `bundle` call to derive the bundle ↵Caio Chassot2010-03-121-1/+2
| | | | | | | | | | | | | | | | executable name from Thor::Util.ruby_command. This ensures that eg. when `rails` is called from `ruby1.9`, `bundle1.9` is called. Signed-off-by: José Valim <jose.valim@gmail.com>
| * Add a check to ensure that the application name does not already exist, i.e. ↵Kieran Pilkington2010-03-121-0/+2
| | | | | | | | | | | | String or Module are part of ruby [#3872 status:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
| * Revert "Always load the environment before executing any command. [#3905 ↵José Valim2010-03-121-2/+5
| | | | | | | | | | | | status:resolved]" This reverts commit 16846553b8866eab2aa3b128a2a23a221a25f7e3.
* | Merge remote branch 'mainstream/master'Pratik Naik2010-03-128-49/+40
|\| | | | | | | | | | | | | Conflicts: activerecord/lib/active_record/base.rb railties/lib/rails/configuration.rb railties/lib/rails/log_subscriber.rb
| * Always load the environment before executing any command. [#3905 ↵José Valim2010-03-121-5/+2
| | | | | | | | status:resolved]
| * Update generated Gemfile to use http://rubygems.org, unicorn instead of ↵Jeremy Kemper2010-03-071-4/+4
| | | | | | | | mongrel, and nokogiri instead of hpricot
| * Change generated code to replace faulty commentCarlhuda2010-03-041-1/+1
| |
| * Deprecated ActionController::Base.session_options= and ↵Carlhuda2010-03-042-8/+3
| | | | | | | | ActionController::Base.session_store= in favor of a config.session_store method (which takes params) and a config.cookie_secret variable, which is used in various secret scenarios. The old AC::Base options will continue to work with deprecation warnings.
| * Fix Sam Ruby's tests and deprecation warningsCarlhuda2010-03-041-2/+2
| |
| * Revert "In app_generator, fix hardcoded `bundle` call to derive the bundle ↵Carl Lerche2010-03-031-2/+1
| | | | | | | | | | | | | | | | executable name from Thor::Util.ruby_command." This reverts commit 6f4c45199b791ac2c90aa6742f8ffbd62b02ed7b. This breaks the tests. Please investigate.
| * In app_generator, fix hardcoded `bundle` call to derive the bundle ↵Caio Chassot2010-03-031-1/+2
| | | | | | | | | | | | | | | | executable name from Thor::Util.ruby_command. This ensures that eg. when `rails` is called from `ruby1.9`, `bundle1.9` is called. Signed-off-by: José Valim <jose.valim@gmail.com>
| * Removing prototype and just using vanilla jsMikel Lindsaar2010-03-021-17/+17
| |
| * vendor/rails doesn't work anymore, remove it from the blank slate suggestionJoshua Peek2010-02-281-9/+0
| |
| * the folder public/javascripts should be created by default [#4027 ↵Ramon Soares2010-02-261-2/+5
| | | | | | | | | | | | status:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
| * load_path is expecting a String in the application.rb generatorThomas R. Koll2010-02-251-1/+1
| | | | | | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
| * Invalid namespace on app generation raises an errorKyle Maxwell2010-02-171-2/+7
| | | | | | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* | Merge remote branch 'mainstream/master'Pratik Naik2010-02-1411-1109/+1687
|\| | | | | | | | | | | | | | | Conflicts: railties/README railties/guides/source/active_support_core_extensions.textile railties/guides/source/getting_started.textile railties/lib/generators/rails/app/templates/README
| * Resolve test/unit load ordering by removing backtrace filter from boot ↵Jeremy Kemper2010-02-111-2/+1
| | | | | | | | initializers
| * Suggest Mongrel and Capistrano in the default bundleDavid Heinemeier Hansson2010-02-091-11/+17
| |
| * Take into account gem versions (so script/rails server can work outside the ↵José Valim2010-02-081-1/+0
| | | | | | | | application) and use Rails::Application.root instead of ROOT_PATH.
| * Updating Prototype to 1.6.1 and script.aculo.us to 1.8.3Mikel Lindsaar2010-02-084-1041/+1593
| | | | | | | | Signed-off-by: José Valim <jose.valim@gmail.com>
| * Check if Test::Unit is defined before adding backtrace filter.José Valim2010-02-071-0/+1
| |
| * fix usage examples and more to use new invocationsRomD2010-02-061-8/+8
| | | | | | | | Signed-off-by: Carl Lerche <carllerche@mac.com>
| * Cleanup commentsDavid Heinemeier Hansson2010-02-051-8/+3
| |
| * Not a fan of the double ##David Heinemeier Hansson2010-02-051-2/+2
| |
| * Simplify conditions for --dev and --edgeDavid Heinemeier Hansson2010-02-051-6/+6
| |
| * Path approach shouldnt specify versionDavid Heinemeier Hansson2010-02-051-1/+1
| |
| * New style for path referencesDavid Heinemeier Hansson2010-02-051-2/+1
| |
| * Add prototype ujs handler for data-methodJeremy Kemper2010-02-041-0/+26
| |
| * Update prototype-ujs for data-confirmJeremy Kemper2010-02-041-5/+12
| |
| * Autorequire default libs and those in groups named after the current Rails ↵Jeremy Kemper2010-02-041-2/+2
| | | | | | | | environment
| * Revert "Rails script commands load the application rather than just boot"Jeremy Kemper2010-02-041-1/+1
| | | | | | | | This reverts commit 358451c2194c5b89b576fd623811da708ee89d95.
| * Rails script commands load the application rather than just bootJeremy Kemper2010-02-041-1/+1
| |
| * Move framework requires and Bundler.require from boot.rb to app.rb. Cut down ↵Jeremy Kemper2010-02-042-29/+14
| | | | | | | | the list of railtie choices to those that make sense.
| * Updated the database.yml file generated for ibm_db to the latest version of ↵Antonio Cangiano2010-02-041-11/+20
| | | | | | | | | | | | | | | | DB2 and the gem. [#3852 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* | Change "script/server" to "rails server" in README.Henrik N2010-02-061-8/+9
|/ | | | Also console, dbconsole, generate.
* Update Gemfile to use latest bundler config.José Valim2010-02-042-20/+26
|
* Use a normal gem source url instead of a magic symbolJeremy Kemper2010-02-041-1/+1
|
* Autorequire bundled libraries by defaultJeremy Kemper2010-02-031-1/+4
|
* Update rails to use the latest bundlerCarl Lerche2010-02-031-1/+1
|
* Make bin/rails call rails/commands/application, fix generators usage and ↵José Valim2010-02-032-1/+2
| | | | update .gitignores.
* Updating index.html to remove script/generate and making railties tests pass ↵Mikel Lindsaar2010-02-021-1/+1
| | | | again
* Fix rails serverDavid Heinemeier Hansson2010-02-021-0/+1
|
* Add a reminder that you should use "rails" not "script/rails" when running ↵David Heinemeier Hansson2010-02-021-0/+2
| | | | normally
* Removed all the default commands in script/* and replaced them with ↵David Heinemeier Hansson2010-02-0211-31/+6
| | | | script/rails and a rails command that'll act the same when run from within the app [DHH]
* Get rid of deprecation warnings on config/environments/*José Valim2010-02-023-7/+7
|
* Fixed --dev flag for new bundlerMikel Lindsaar2010-02-022-2/+2
|
* Add the database adapter in the generated GemfileCarl Lerche2010-02-012-0/+20
|
* Update the generated Gemfile and config/boot.rb to work with bundler 0.9Carl Lerche2010-01-312-11/+16
|