lib/redbooth-ruby.rb in redbooth-ruby-0.0.4 vs lib/redbooth-ruby.rb in redbooth-ruby-0.0.5
- old
+ new
@@ -18,11 +18,16 @@
autoload :Organization, 'redbooth-ruby/organization'
autoload :Person, 'redbooth-ruby/person'
autoload :Project, 'redbooth-ruby/project'
autoload :Conversation, 'redbooth-ruby/conversation'
autoload :Membership, 'redbooth-ruby/membership'
+ autoload :Comment, 'redbooth-ruby/comment'
+ autoload :Note, 'redbooth-ruby/note'
+ autoload :Subtask, 'redbooth-ruby/subtask'
+ autoload :File, 'redbooth-ruby/file'
+
module Operations
autoload :Base, 'redbooth-ruby/operations/base'
autoload :Index, 'redbooth-ruby/operations/index'
autoload :Create, 'redbooth-ruby/operations/create'
autoload :Delete, 'redbooth-ruby/operations/delete'
@@ -37,9 +42,14 @@
autoload :Helpers, 'redbooth-ruby/request/helpers'
autoload :Info, 'redbooth-ruby/request/info'
autoload :Validator, 'redbooth-ruby/request/validator'
autoload :Response, 'redbooth-ruby/request/response'
autoload :Collection, 'redbooth-ruby/request/collection'
+ end
+
+ module ClientOperations
+ autoload :Search, 'redbooth-ruby/client_operations/search'
+ autoload :Metadata, 'redbooth-ruby/client_operations/metadata'
end
class RedboothError < StandardError; end
class AuthenticationError < RedboothError; end
class OauhtTokenExpired < AuthenticationError; end