Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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) | ||||
* | | Use all in place of find(:all) | Vijay Dev | 2011-05-10 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #263 from CvX/master | José Valim | 2011-05-07 | 1 | -1/+1 |
|\ | | | | | Corrected dbconsole usage message | ||||
| * | Corrected dbconsole usage message. | 2011-04-12 | 1 | -1/+1 | |
| | | |||||
* | | Always flush logger at exit | Jason Rudolph | 2011-05-06 | 1 | -14/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prior to this change, running code via script/runner would demonstrate different logging behavior than running the same code via a rake task. In production mode the script/runner approach would always flush the logger, but the rake-based approach would not automatically flush the logger. This discrepancy violates the principle of least surprise, and it could lead to the loss of important production logging data. This change removes special-case code in the "runner" command, and replaces it with a general solution to ensure that the logger gets flushed at exit. This solution works for "runner", "console", "server", rake tasks, and any other process that loads the Rails environment. | ||||
* | | Take into account the Rack::Server :SSLEnable option when building the ↵ | Daniel Martin | 2011-05-06 | 1 | -1/+2 |
| | | | | | | | | application's URL | ||||
* | | Remove defined?(ActiveRecord) and use the railtie hook instead. | José Valim | 2011-05-04 | 1 | -4/+0 |
| | | |||||
* | | Fix console to accept [environment] [options] as specified in docs. | Emilio Tagua | 2011-04-14 | 1 | -1/+1 |
| | | |||||
* | | Remove `#among?` from Active Support | Prem Sichanugrist | 2011-04-13 | 4 | -4/+4 |
|/ | | | | | | After a long list of discussion about the performance problem from using varargs and the reason that we can't find a great pair for it, it would be best to remove support for it for now. It will come back if we can find a good pair for it. For now, Bon Voyage, `#among?`. | ||||
* | Change Object#either? to Object#among? -- thanks to @jamesarosen for the ↵ | David Heinemeier Hansson | 2011-04-12 | 4 | -4/+4 |
| | | | | suggestion! | ||||
* | Cant use inclusion in commands/application.rb as the frameworks havent all ↵ | David Heinemeier Hansson | 2011-04-11 | 1 | -2/+1 |
| | | | | been required yet | ||||
* | Using Object#in? and Object#either? in various places | Prem Sichanugrist | 2011-04-11 | 5 | -5/+15 |
| | | | | There're a lot of places in Rails source code which make a lot of sense to switching to Object#in? or Object#either? instead of using [].include?. | ||||
* | Moved Turn activation/dependency to railties | David Heinemeier Hansson | 2011-03-31 | 1 | -1/+1 |
| | |||||
* | Direct logging of Active Record to STDOUT so it's shown inline with the ↵ | David Heinemeier Hansson | 2011-03-31 | 1 | -0/+4 |
| | | | | results in the console [DHH] | ||||
* | reduce two method calls per request, 1 to method_missing and one to send | Aaron Patterson | 2011-02-28 | 1 | -0/+4 |
| | |||||
* | Drop remaining script/plugin sources references | Tim Pope | 2011-02-03 | 1 | -6/+1 |
| | | | | | | [#3742 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | Accept 'postgres' as a PostgreSQL driver name in dbconsole for non-AR ORMs ↵ | Akira Matsuda | 2011-02-01 | 1 | -1/+1 |
| | | | | | | | | like DataMapper and Sequel [#6180 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | "rails dbconsole t" must not load "production" but "test" | Akira Matsuda | 2011-01-31 | 1 | -1/+1 |
| | | | | | | [#6293 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | Use Thor's self.exit_on_failure? to exit whenever accessing the generators ↵ | Philip Arndt | 2011-01-29 | 1 | -0/+12 |
| | | | | from the CLI and a Thor::Error is raised. | ||||
* | load and prefer psych as the YAML parser when it is available | Aaron Patterson | 2011-01-21 | 1 | -0/+6 |
| | |||||
* | Don't need to support rails plugin --version | Piotr Sarnacki | 2010-11-16 | 1 | -6/+0 |
| | |||||
* | Added 'rails plugin new' generator which generates gem plugin skeleton. | Piotr Sarnacki | 2010-11-02 | 1 | -0/+16 |
| | | | | | | This command is based on enginex gem by José Valim. It generates gem structure and ads dummy application into test/dummy. This can be used to start developing any kind of extension for rails 3. |