aboutsummaryrefslogtreecommitdiffstats
path: root/railties
Commit message (Collapse)AuthorAgeFilesLines
* Clean up view path cruft and split path implementations into Template::Path ↵Joshua Peek2009-01-011-3/+4
| | | | and Template::EagerPath
* Fix failing gem dependency tests [#1659 state:resolved]Mike Gunderloy2009-01-011-12/+12
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Fix FCGI dispatching testsMike Gunderloy2009-01-011-42/+7
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Allow custom rails generators to pass in their own binding to Create command ↵Joshua Peek2008-12-281-1/+1
| | | | so that the corresponding erb templates get rendered with the proper binding [#1493 state:resolved]
* Ensure template runner tests don't depend on hash ordering [#1654 ↵Mike Gunderloy2008-12-282-2/+2
| | | | | | state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Use SimpleLogger for Rails::TemplateRunner outside of the Generator context ↵Aaron Quint2008-12-281-0/+10
| | | | | | [#1618 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Adding test coverage and better logging to Rails::TemplateRunner [#1618 ↵Aaron Quint2008-12-272-66/+243
| | | | | | state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Merge docrailsPratik Naik2008-12-263-84/+334
|
* Merge commit 'fred/more_pullable'Pratik Naik2008-12-211-1/+1
|\
| * Fix script/dbconsole not handling numeric password [#1395 state:resolved]pfagiani2008-12-211-1/+1
| | | | | | | | Signed-off-by: Frederick Cheung <frederick.cheung@gmail.com>
* | Correct description of tmp:create task [#1607 state:resolved] [Roderick van ↵Pratik Naik2008-12-211-2/+2
|/ | | | Domburg]
* Diverge Metal implementation from Rack::Cascade since we want the last app ↵Joshua Peek2008-12-192-44/+22
| | | | to return its headers and body if the status is a 404.
* Merge docrailsPratik Naik2008-12-1916-1111/+853
|
* Cheaper metal cascadeJeremy Kemper2008-12-182-10/+51
|
* Use LogTailerJeremy Kemper2008-12-181-1/+1
|
* Rename Rails::Rack::Logger -> LogTailer. Speed up log mtime checks.Jeremy Kemper2008-12-183-29/+36
|
* Cheaper log tail time comparisonJeremy Kemper2008-12-181-3/+3
|
* Move gaint lock into middlewareJoshua Peek2008-12-181-1/+1
|
* Make generated Metal bits a pure rack endpoint application (not middleware)Joshua Peek2008-12-173-19/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of calling super to pass the request on, return a 404. The modified app looks like this: # app/metal/poller.rb class Poller def self.call(env) if env["PATH_INFO"] =~ /^\/poller/ [200, {"Content-Type" => "text/html"}, "Hello, World!"] else [404, {"Content-Type" => "text/html"}, "Not Found"] end end end But you aren't locked in to just Rails: # app/metal/api.rb require 'sinatra' Sinatra::Application.default_options.merge!(:run => false, :env => :production) Api = Sinatra.application unless defined? Api get '/interesting/new/ideas' do 'Hello Sinatra!' end
* Introduce Rails MetalJoshua Peek2008-12-166-0/+60
| | | | | | | | | | | | | | | | | | | # app/metal/poller.rb class Poller < Rails::Rack::Metal def call(env) if env["PATH_INFO"] =~ /^\/poller/ [200, {"Content-Type" => "application/json"}, Message.recent.to_json] else super end end end * There is a generator to help you get started `script/generate metal poller` * Also, metal bits can be ran standalone with rackup `rackup app/metal/poller.rb`
* normalize author names in changelogs [#1495 state:committed]Xavier Noria2008-12-161-195/+195
| | | | Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
* Switch to Rack based session stores.Joshua Peek2008-12-153-11/+4
|
* Added gem backtrace pretty priting (Juan Lupión) [#1497 state:committed]David Heinemeier Hansson2008-12-151-0/+3
|
* Prefer Rails.logger over RAILS_DEFAULT_LOGGERJoshua Peek2008-12-101-1/+3
|
* How'd that sneak in there?Jeremy Kemper2008-12-091-1/+0
|
* Use full path to environmentJeremy Kemper2008-12-081-1/+1
|
* Fix message when running TemplateRunner#git. [#1526 state:resolved]Sergio Gil2008-12-081-2/+2
| | | | Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Add a rake task to apply a template to an existing application.Pratik Naik2008-12-074-3/+11
| | | | Example : rake rails:template LOCATION=~/template.rb
* Remove unused TemplateRunner attributesPratik Naik2008-12-071-1/+1
|
* Merge with docrailsPratik Naik2008-12-0758-1214/+5052
|
* Added support for plugins to be installed as submodules with the application ↵Peter Cooper2008-12-061-1/+7
| | | | | | templater. [#1517 state:resolved] Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
* Silence server backtrace in rescue templates and log files. Also remove some ↵Joshua Peek2008-12-051-2/+4
| | | | noise from missing template errors.
* Remove config dir from the load pathJeremy Kemper2008-12-031-2/+1
|
* Add :env and :sudo options to TemplateRunner#rake.Pratik Naik2008-12-041-3/+6
| | | | | | | Examples : rake("gems:install", :sudo => true) rake("db:migrate", :env => "production")
* Make TemplateRunner#generate accept any number of argumentsPratik Naik2008-12-031-3/+3
|
* Merge branch 'master' of git@github.com:rails/railsJeremy Kemper2008-12-0339-747/+855
|\
| * Remove docs for TemplateRunner#gem as the behaviour has been changedPratik Naik2008-12-021-13/+0
| |
| * Add "-m/--template" option to Rails generator to apply template to generated ↵Jeremy McAnally2008-12-029-0/+467
| | | | | | | | | | | | application. Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
| * Github comments are an excellent way to perform community code review -- ↵David Heinemeier Hansson2008-12-011-2/+2
| | | | | | | | keep it up!
| * establish mysql connection before dropping databaseAliaksey Kandratsenka2008-12-011-0/+1
| | | | | | | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com> [#63 state:committed]
| * Manually load the DB config rather than firing the whole initializer [Gerrit ↵Michael Koziarski2008-12-012-4/+15
| | | | | | | | Kaiser]
| * Add internal middleware stack to DispatcherJoshua Peek2008-12-012-0/+12
| | | | | | | | config.middleware.use Rack::Cache
| * handle missing dependecies in gem loadingMatt Jones2008-12-016-0/+95
| | | | | | | | Signed-off-by: Michael Koziarski <michael@koziarski.com>
| * opps, inner_app is in the wrong conditionalJoshua Peek2008-12-011-1/+1
| |
| * Generate rackup dispatcher with rails:update:generate_dispatchersJoshua Peek2008-12-015-26/+20
| |
| * fix failing railties testJoshua Peek2008-12-011-2/+2
| |
| * Switch FCGI handler over to RackJoshua Peek2008-12-011-1/+1
| |
| * Extracted the process scripts (inspector, reaper, spawner) into the plugin ↵David Heinemeier Hansson2008-11-3010-510/+5
| | | | | | | | irs_process_scripts [DHH]
| * Changed Rails.root to return a Pathname object (allows for ↵David Heinemeier Hansson2008-11-303-5/+5
| | | | | | | | Rails.root.join("app", "controllers") => "#{RAILS_ROOT}/app/controllers") [#1482]
| * Add restart notice where missingDavid Heinemeier Hansson2008-11-302-0/+4
| |