2006-06-25 10:44:22 -04:00
|
|
|
#--
|
|
|
|
# Copyright (c) 2006 David Heinemeier Hansson
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
# a copy of this software and associated documentation files (the
|
|
|
|
# "Software"), to deal in the Software without restriction, including
|
|
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
# the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be
|
|
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
#++
|
|
|
|
|
2009-05-06 00:44:02 -04:00
|
|
|
activesupport_path = "#{File.dirname(__FILE__)}/../../activesupport/lib"
|
|
|
|
$:.unshift(activesupport_path) if File.directory?(activesupport_path)
|
|
|
|
require 'active_support'
|
2006-06-25 10:44:22 -04:00
|
|
|
|
2009-06-08 21:48:14 -04:00
|
|
|
activemodel_path = "#{File.dirname(__FILE__)}/../../activemodel/lib"
|
|
|
|
$:.unshift(activemodel_path) if File.directory?(activemodel_path)
|
|
|
|
require 'active_model'
|
2006-09-07 20:07:30 -04:00
|
|
|
|
|
|
|
module ActiveResource
|
2009-05-06 03:14:55 -04:00
|
|
|
autoload :Base, 'active_resource/base'
|
2009-06-08 21:48:14 -04:00
|
|
|
autoload :Connection, 'active_resource/connection'
|
|
|
|
autoload :CustomMethods, 'active_resource/custom_methods'
|
|
|
|
autoload :Formats, 'active_resource/formats'
|
2009-07-21 00:57:01 -04:00
|
|
|
autoload :Observing, 'active_resource/observing'
|
2009-06-08 21:48:14 -04:00
|
|
|
autoload :Validations, 'active_resource/validations'
|
|
|
|
autoload :HttpMock, 'active_resource/http_mock'
|
2008-08-26 00:22:34 -04:00
|
|
|
end
|