Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove support for rails server RAILS_ENV=env-name | Sam Oliver | 2012-05-30 | 1 | -5/+0 |
| | |||||
* | Fix various bugs with console arguments. | Sam Oliver | 2012-05-30 | 2 | -85/+100 |
| | | | | Allow hyphens in environment names again. | ||||
* | Add support runner hook. | kennyj | 2012-05-29 | 1 | -0/+1 |
| | |||||
* | use File.join rather than depend on Pathname | Aaron Patterson | 2012-05-23 | 1 | -1/+1 |
| | |||||
* | Fix `rails db -h` and cosmetic fixes in usage banners | Alexey Vakhov | 2012-05-22 | 3 | -3/+8 |
| | | | | | | | Ruby tries to use '-h' as short version of '--header' by default https://github.com/ruby/ruby/blob/trunk/lib/optparse.rb#L1372-1381. To force `rails db -h` prints an usage message we should add the `-h` options explicitly. | ||||
* | Use relative path to sqlite3 db in `rails db` command | Alexey Vakhov | 2012-05-22 | 1 | -1/+1 |
| | | | | | | | | | | Rails uses sqlit3 db file with a path relative to the rails root. It allows to execute server not from rails root only. For example you can fire `./spec/dummy/script/rails s` to start dummy application server if you develop some engine gem. Now the `rails db` command uses relative paths also and you can explore your dummy db via `./spec/dummy/script/rails db` command. | ||||
* | require "rubygems" is obsolete in Ruby 1.9.3 | Kornelius Kalnbach | 2012-05-13 | 2 | -3/+0 |
| | |||||
* | More faster rails dbconsole | Dmitry Vorotilin | 2012-05-06 | 1 | -10/+28 |
| | |||||
* | Add Rails::DBConsole tests | Alexey Vakhov | 2012-05-02 | 1 | -22/+34 |
| | |||||
* | Remove unused assignments | Mark Rushakoff | 2012-04-29 | 1 | -1/+0 |
| | |||||
* | and one more time | Aditya Sanghi | 2012-04-24 | 2 | -3/+3 |
| | |||||
* | another attempt at the language | Aditya Sanghi | 2012-04-18 | 1 | -1/+1 |
| | |||||
* | stamp out ruby-debug19 with extreme prejudice :) | Aditya Sanghi | 2012-04-17 | 2 | -4/+4 |
| | |||||
* | match rails console environment support, to server | schneems | 2012-03-22 | 1 | -0/+13 |
| | | | | rails server takes `-e` as an argument to specify RAILS_ENV, rails console currently does not have the same interface. This commit fixes this disparity so developers can manually specify `RAILS_ENV` or can pass in an environment with a `-e`. | ||||
* | fix rails server support of RAILS_ENV variable | schneems | 2012-03-20 | 1 | -0/+5 |
| | | | | | | | When launching rails server from the command line with a rails environment specified such as `rails server RAILS_ENV=production` an error would occur since rails will try to use `RAILS_ENV=production` as it's server. When launching rails with a specified server such as thin `rails server thin RAILS_ENV=production` no error will be thrown, but rails will not start up in the specified environment. This fixes both of those cases | ||||
* | allow people to specify custom formatters, use the default formatter in ↵ | Aaron Patterson | 2012-03-12 | 1 | -0/+2 |
| | | | | production so that PID and timestamp are logged. fixes #5388 | ||||
* | Refactor Rails::Console to make it easier to test and add tests for it | Piotr Sarnacki | 2012-02-16 | 1 | -25/+46 |
| | |||||
* | Allow to set custom console type with Rails.application.config.console= | Piotr Sarnacki | 2012-02-16 | 1 | -2/+3 |
| | | | | | | | | | | | | | This patch adds ability to set custom console if you want to use something other than IRB. Previously the hack that people used was: silence_warnings do require 'pry' IRB = Pry end which is not the best way to customize things. | ||||
* | Remove console --irb deprecation notice | Piotr Sarnacki | 2012-02-16 | 1 | -1/+0 |
| | |||||
* | broadcasting to the console and remove file tailing middleware | Aaron Patterson | 2012-01-20 | 1 | -1/+7 |
| | |||||
* | do not do reverse lookups on incoming requests for webrick. fixes #4542 | Aaron Patterson | 2012-01-19 | 1 | -0/+1 |
| | |||||
* | fixes in api docs | Vijay Dev | 2012-01-13 | 2 | -2/+2 |
| | |||||
* | No need to require psych since require yaml does that. | Rafael Mendonça França | 2012-01-04 | 1 | -1/+0 |
| | |||||
* | No need to use rescue block to require psych | Rafael Mendonça França | 2012-01-04 | 1 | -6/+1 |
| | |||||
* | Rails::Plugin has gone | Santiago Pastorino | 2012-01-03 | 1 | -544/+0 |
| | |||||
* | gem ruby-debug19 for console error if ruby-debug19 not found | Vishnu Atrai | 2011-12-25 | 1 | -1/+1 |
| | |||||
* | Get rid of more 1.8.x dead code | José Valim | 2011-12-20 | 1 | -1/+1 |
| | |||||
* | dbconsole: Use the app's database_configuration instead of duplicating code. | Dieter Komendera | 2011-12-14 | 1 | -1/+1 |
| | |||||
* | Remove the -h option to dbconsole which is the shorter form of --header | Vijay Dev | 2011-11-22 | 1 | -1/+1 |
| | | | | | | This is done since the -h option to dbconsole hides the conventional -h for help and forces users to use --help to see the usage options for dbconsole. | ||||
* | Substituted RailsCommands for Rails::Commands | Daniel Dyba | 2011-11-16 | 1 | -159/+161 |
| | |||||
* | Changed Commands module to RailsCommands. | Daniel Dyba | 2011-11-16 | 1 | -3/+3 |
| | | | | | | This is to avoid a conflict that occurs when you add Rake to your Gemfile. There is a Commands Object in Rake that conflicts with the Commands module in plugin.rb. See rails issue #1866. | ||||
* | Extend IRB right before starting IRB to remove dependency on IRB from ↵ | Akira Matsuda | 2011-11-10 | 1 | -0/+2 |
| | | | | Rails::Application | ||||
* | Use toplevel Rack::ContentLength | Jeremy Kemper | 2011-10-19 | 1 | -1/+1 |
| | |||||
* | Use again Rack's ContentLength middleware part 2 | Santiago Pastorino | 2011-10-18 | 1 | -0/+1 |
| | |||||
* | Use again Rack's ContentLength middleware | Santiago Pastorino | 2011-10-18 | 1 | -1/+0 |
| | |||||
* | Print information about .railsrc to users | Guillermo Iguaran | 2011-10-02 | 1 | -0/+1 |
| | |||||
* | Read extra args for 'rails new' from ~/.railsrc | Guillermo Iguaran | 2011-10-02 | 1 | -0/+7 |
| | |||||
* | replace dev.ror.com plugin url with a dummy one | Vijay Dev | 2011-06-16 | 1 | -2/+2 |
| | |||||
* | make 'rails runner' show usage when run without any options | Vijay Dev | 2011-06-10 | 1 | -0/+4 |
| | |||||
* | Merge pull request #1356 from flippingbits/fix_engine_generator | José Valim | 2011-06-09 | 1 | -1/+3 |
|\ | | | | | Fix engine's generator | ||||
| * | Refactor identifying generator's destination root | Stefan Sprenger | 2011-05-27 | 1 | -5/+2 |
| | | |||||
| * | Introducing engine commands | Stefan Sprenger | 2011-05-26 | 1 | -1/+6 |
| | | |||||
* | | Fixing Rails::Server#app under Rack::URLMap | Guillermo Iguaran | 2011-06-07 | 1 | -1/+1 |
| | | |||||
* | | Remove trailing white-spaces | Guillermo Iguaran | 2011-06-05 | 2 | -6/+6 |
|/ | |||||
* | Everyone receives app as argument for consistency. | José Valim | 2011-05-25 | 1 | -1/+2 |
| | |||||
* | Actually this file may be invoked directly as well with --dev. | José Valim | 2011-05-25 | 2 | -1/+3 |
| | |||||
* | Streamline generators initialization flow. | José Valim | 2011-05-25 | 3 | -7/+1 |
| | |||||
* | Move content length to the server, this brings the same behavior as in rack 1.2. | José Valim | 2011-05-23 | 1 | -0/+1 |
| | |||||
* | Merge pull request #247 from goncalossilva/performance_test | Jeremy Kemper | 2011-05-17 | 2 | -62/+55 |
|\ | | | | | Performance tests improved | ||||
| * | benchmarker and profiler now use the new performance testing tools (support ↵ | Gonçalo Silva | 2011-05-10 | 2 | -62/+55 |
| | | | | | | | | for Rubinius and JRuby and high configurability) |