muck-engine 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +11 -4
- data/Rakefile +5 -6
- data/VERSION +1 -1
- data/muck-engine.gemspec +214 -0
- data/rails/init.rb +1 -1
- data/rdoc/classes/ActionController.html +111 -0
- data/rdoc/classes/ActionController/MuckApplication.html +158 -0
- data/rdoc/classes/ActionController/MuckApplication/ClassMethods.html +105 -0
- data/rdoc/classes/ActionController/MuckApplication/InstanceMethods.html +105 -0
- data/rdoc/classes/ActiveRecord.html +111 -0
- data/rdoc/classes/ActiveRecord/MuckModel.html +157 -0
- data/rdoc/classes/ActiveRecord/MuckModel/ClassMethods.html +105 -0
- data/rdoc/classes/ActiveRecord/MuckModel/InstanceMethods.html +169 -0
- data/rdoc/classes/MuckEngine.html +117 -0
- data/rdoc/classes/MuckEngine/Tasks.html +146 -0
- data/rdoc/created.rid +1 -0
- data/rdoc/files/README_rdoc.html +145 -0
- data/rdoc/files/lib/action_controller/muck_application_rb.html +101 -0
- data/rdoc/files/lib/active_record/muck_model_rb.html +101 -0
- data/rdoc/files/lib/muck-engine/tasks_rb.html +111 -0
- data/rdoc/files/lib/muck-engine_rb.html +101 -0
- data/rdoc/fr_class_index.html +36 -0
- data/rdoc/fr_file_index.html +31 -0
- data/rdoc/fr_method_index.html +31 -0
- data/rdoc/index.html +24 -0
- data/rdoc/rdoc-style.css +208 -0
- data/tasks/rails.rake +2 -0
- metadata +25 -3
- data/lib/muck-engine.rb +0 -5
data/lib/muck-engine.rb
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
ActionController::Base.send :include, ActionController::MuckApplication
|
2
|
-
ActiveRecord::Base.send :include, ActiveRecord::MuckModel
|
3
|
-
ActionController::Base.send :helper, MuckEngineHelper
|
4
|
-
|
5
|
-
I18n.load_path += Dir[ File.join(File.dirname(__FILE__), '..', 'locales', '*.{rb,yml}') ]
|