Changeset 254
- Timestamp:
- 01/30/06 15:49:07 (3 years ago)
- Files:
-
- applications/engines_test/app/controllers/application.rb (modified) (1 diff)
- applications/engines_test/app/controllers/james/funk_controller.rb (modified) (1 diff)
- applications/engines_test/app/helpers/mail_helper.rb (added)
- applications/engines_test/app/helpers/my_helper.rb (added)
- applications/engines_test/app/models/monkey (added)
- applications/engines_test/app/models/monkey/chimp.rb (added)
- applications/engines_test/app/models/notify_mail.rb (added)
- applications/engines_test/app/views/james (added)
- applications/engines_test/app/views/james/funk (added)
- applications/engines_test/app/views/james/funk/xbye.rhtml (added)
- applications/engines_test/app/views/notify_mail (added)
- applications/engines_test/app/views/notify_mail/signup.rhtml (added)
- applications/engines_test/config/environment.rb (modified) (1 diff)
- applications/engines_test/test/unit/action_mailer_test.rb (added)
- applications/engines_test/test/unit/engines_test.rb (added)
- applications/engines_test/vendor/plugins (modified) (1 prop)
- applications/engines_test/vendor/plugins/module_a_engine (added)
- applications/engines_test/vendor/plugins/module_a_engine/app (added)
- applications/engines_test/vendor/plugins/module_a_engine/app/controllers (added)
- applications/engines_test/vendor/plugins/module_a_engine/app/controllers/admin (added)
- applications/engines_test/vendor/plugins/module_a_engine/app/controllers/admin/account_controller.rb (added)
- applications/engines_test/vendor/plugins/module_a_engine/app/helpers (added)
- applications/engines_test/vendor/plugins/module_a_engine/app/helpers/account_helper.rb (added)
- applications/engines_test/vendor/plugins/module_a_engine/app/helpers/my_helper.rb (added)
- applications/engines_test/vendor/plugins/module_a_engine/app/models (added)
- applications/engines_test/vendor/plugins/module_a_engine/app/models/account.rb (added)
- applications/engines_test/vendor/plugins/module_a_engine/app/views (added)
- applications/engines_test/vendor/plugins/module_b_engine (added)
- applications/engines_test/vendor/plugins/module_b_engine/app (added)
- applications/engines_test/vendor/plugins/module_b_engine/app/controllers (added)
- applications/engines_test/vendor/plugins/module_b_engine/app/helpers (added)
- applications/engines_test/vendor/plugins/module_b_engine/app/helpers/account_helper.rb (added)
- applications/engines_test/vendor/plugins/module_b_engine/app/helpers/my_helper.rb (added)
- applications/engines_test/vendor/plugins/module_b_engine/app/models (added)
- applications/engines_test/vendor/plugins/module_b_engine/app/views (added)
- applications/engines_test/vendor/plugins/test_engine/app/controllers/james/funk_controller.rb (modified) (1 diff)
- applications/engines_test/vendor/plugins/test_engine/app/controllers/test_controller.rb (added)
- applications/engines_test/vendor/plugins/test_engine/app/views (added)
- applications/engines_test/vendor/plugins/test_engine/app/views/james (added)
- applications/engines_test/vendor/plugins/test_engine/app/views/james/funk (added)
- applications/engines_test/vendor/plugins/test_engine/app/views/james/funk/bye.rhtml (added)
- applications/engines_test/vendor/plugins/test_engine/app/views/test (added)
- applications/engines_test/vendor/plugins/test_engine/app/views/test/index.rhtml (added)
- applications/engines_test/vendor/plugins/test_engine/init_engine.rb (added)
- applications/engines_test/vendor/plugins/test_engine/public (added)
- applications/engines_test/vendor/plugins/test_engine/public/javascripts (added)
- applications/engines_test/vendor/plugins/test_engine/public/javascripts/stuff.js (added)
- applications/engines_test/vendor/plugins/test_engine/public/stylesheets (added)
- applications/engines_test/vendor/plugins/test_engine/public/stylesheets/styles.css (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
applications/engines_test/app/controllers/application.rb
r194 r254 2 2 # Likewise, all the methods added will be available for all controllers. 3 3 class ApplicationController < ActionController::Base 4 helper :my 4 5 end applications/engines_test/app/controllers/james/funk_controller.rb
r204 r254 3 3 render :text => "hello from app" 4 4 end 5 def bye 6 @message = "bye from app" 7 end 5 8 end applications/engines_test/config/environment.rb
r204 r254 53 53 # Include your application configuration below 54 54 55 Engines.start :test 55 Engines.create_logger 56 Engines.start :test, :module_a, :module_b applications/engines_test/vendor/plugins
- Property svn:externals changed from
engines http://opensvn.csie.org/rails_engines/engines/trunk
to
engines http://opensvn.csie.org/rails_engines/engines/branches/rb_1.0
- Property svn:externals changed from
applications/engines_test/vendor/plugins/test_engine/app/controllers/james/funk_controller.rb
r204 r254 7 7 render :text => "pure funk" 8 8 end 9 def bye 10 @message = "bye from test" 11 end 9 12 end
