Changeset 2266
- Timestamp:
- 09/19/05 22:12:14 (5 years ago)
- Files:
-
- tools/switchtower/CHANGELOG (modified) (1 diff)
- tools/switchtower/lib/switchtower/generators/rails/loader.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
tools/switchtower/CHANGELOG
r2209 r2266 1 1 *SVN* 2 3 * Default parameters work correctly with the generator #2218 [Scott Barron] 2 4 3 5 * Attempt to require 'rubygems' explicitly when running the switchtower utility #2134 tools/switchtower/lib/switchtower/generators/rails/loader.rb
r2084 r2266 11 11 12 12 args = ["deployment"] 13 args << options[:application] || "Application"14 args << options[:recipe_file] || "deploy"13 args << (options[:application] || "Application") 14 args << (options[:recipe_file] || "deploy") 15 15 16 16 Rails::Generator::Scripts::Generate.new.run(args)