Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix wrong doc and message about rails profiler. | kennyj | 2012-12-04 | 1 | -1/+1 | |
| | ||||||
* | Refactor config abort message a bit for dbconsole | Carlos Antonio da Silva | 2012-11-18 | 2 | -8/+4 | |
| | | | | | | Remove not used variable. Remove config attr_reader causing warning. Fix indent in runner file. | |||||
* | Fix rails db command with sqlite3 database | Carlos Antonio da Silva | 2012-11-18 | 1 | -5/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | When using sqlite3 it was attempting to find the database file based on Rails.root, the problem is that Rails.root is not always present because we try to first manually load "config/database.yml" instead of loading the entire app, to make "rails db" faster. This means that when we're in the root path of the app, calling "rails db" won't allow us to use Rails.root, making the command fail for sqlite3 with the error: ./rails/commands/dbconsole.rb:62:in `start': undefined method `root' for Rails:Module (NoMethodError) The fix is to simply not pass any dir string to File.expand_path, which will make it use the current directory of the process as base, or the root path of the app, which is what we want. When we are in any other subdirectory, calling "rails db" should work just fine, because "config/database.yml" won't be found, thus "rails db" will fallback to loading the app, making Rails.root available. Closes #8257. | |||||
* | Removing warning : assigned but unused variable | Arun Agrawal | 2012-11-10 | 1 | -1/+1 | |
| | ||||||
* | copy the log level from the config settings | Aaron Patterson | 2012-11-09 | 1 | -0/+1 | |
| | ||||||
* | Use Ruby 1.9 Hash syntax in railties | Robin Dupret | 2012-10-14 | 5 | -11/+11 | |
| | ||||||
* | update Rails::Generators docs [ci skip] | Francesco Rodriguez | 2012-10-07 | 1 | -1/+1 | |
| | ||||||
* | Support MySQL SSL in rails dbconsole. | needfeed | 2012-09-10 | 1 | -1/+6 | |
| | ||||||
* | add Rack::Lock for webrick | Aaron Patterson | 2012-08-21 | 1 | -0/+9 | |
| | ||||||
* | removes usage of Object#in? from the code base (the method remains defined ↵ | Xavier Noria | 2012-08-06 | 2 | -4/+2 | |
| | | | | | | | | | | | | | | | | | | | by Active Support) Selecting which key extensions to include in active_support/rails made apparent the systematic usage of Object#in? in the code base. After some discussion in https://github.com/rails/rails/commit/5ea6b0df9a36d033f21b52049426257a4637028d we decided to remove it and use plain Ruby, which seems enough for this particular idiom. In this commit the refactor has been made case by case. Sometimes include? is the natural alternative, others a simple || is the way you actually spell the condition in your head, others a case statement seems more appropriate. I have chosen the one I liked the most in each case. | |||||
* | 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 |