public
Rubygem
Description: Merb Core: All you need. None you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/wycats/merb-core.git
Search Repo:
remove :nodoc: from merb-core DO NOT USE :nodoc: EVAR!!
ezmobius (author)
Mon May 12 17:39:34 -0700 2008
commit  0ff80a0797da59e2a76e9d3dce6bfda886293232
tree    dd1066ee117b443b19b05e3419cc375fd9c002e4
parent  b38c164be5ebda892ac73e9792b6a099f25270cf
...
237
238
239
240
 
241
242
243
...
261
262
263
264
 
265
266
267
268
269
...
271
272
273
274
 
275
276
 
277
278
279
280
281
 
282
283
284
...
237
238
239
 
240
241
242
243
...
261
262
263
 
264
265
266
267
268
269
...
271
272
273
 
274
275
 
276
277
278
279
280
 
281
282
283
284
0
@@ -237,7 +237,7 @@
0
         Merb::Config.setup(options)
0
       end
0
 
0
- attr_accessor :configuration #:nodoc:
0
+ attr_accessor :configuration
0
 
0
       # Set configuration parameters from a code block, where each method
0
       # evaluates to a config parameter.
0
@@ -261,7 +261,7 @@
0
       # ==== Parameters
0
       # method<~to_s>:: Method name as hash key value.
0
       # *args:: Value to set the configuration parameter to.
0
- def method_missing(method, *args) #:nodoc:
0
+ def method_missing(method, *args)
0
         if method.to_s[-1,1] == '='
0
           @configuration[method.to_s.tr('=','').to_sym] = *args
0
         else
0
0
0
@@ -271,14 +271,14 @@
0
 
0
     end # class << self
0
 
0
- class ConfigBlock #:nodoc:
0
+ class ConfigBlock
0
 
0
- def initialize(klass, &block) #:nodoc:
0
+ def initialize(klass, &block)
0
         @klass = klass
0
         instance_eval(&block)
0
       end
0
 
0
- def method_missing(method, *args) #:nodoc:
0
+ def method_missing(method, *args)
0
         @klass[method] = *args
0
       end
0
 
...
90
91
92
93
 
94
95
96
...
294
295
296
297
 
298
299
300
...
90
91
92
 
93
94
95
96
...
294
295
296
 
297
298
299
300
0
@@ -90,7 +90,7 @@
0
   # <p>You tried to access <%= @tried_to_access %> but that URL is
0
   # restricted to administrators.</p>
0
   #
0
- module ControllerExceptions #:nodoc: all
0
+ module ControllerExceptions
0
     
0
     # Mapping of status code names to their numeric value.
0
     STATUS_CODES = {}
0
@@ -294,7 +294,7 @@
0
   # Required to show exceptions in the log file
0
   #
0
   # e<Exception>:: The exception that a message is being generated for
0
- def self.exception(e) #:nodoc:
0
+ def self.exception(e)
0
     "#{ e.message } - (#{ e.class })\n" <<
0
     "#{(e.backtrace or []).join("\n")}"
0
   end
...
51
52
53
54
 
55
56
57
...
51
52
53
 
54
55
56
57
0
@@ -51,7 +51,7 @@
0
     BasicAuthentication.new(self, realm, &authenticator)
0
   end
0
   
0
- class BasicAuthentication #:nodoc:
0
+ class BasicAuthentication
0
     # So we can have access to the status codes
0
     include Merb::ControllerExceptions
0
 
...
103
104
105
106
 
107
108
109
...
285
286
287
288
 
289
290
291
...
103
104
105
 
106
107
108
109
...
285
286
287
 
288
289
290
291
0
@@ -103,7 +103,7 @@
0
     
0
     # ==== Parameters
0
     # base<Module>:: The module that ResponderMixin was mixed into
0
- def self.included(base) # :nodoc:
0
+ def self.included(base)
0
       base.extend(ClassMethods)
0
       base.class_eval do
0
         class_inheritable_accessor :class_provided_formats
0
@@ -285,7 +285,7 @@
0
     # 3. If it's */*, use the first provided format
0
     # 4. Look for one that is provided, in order of request
0
     # 5. Raise 406 if none found
0
- def _perform_content_negotiation # :nodoc:
0
+ def _perform_content_negotiation
0
       raise Merb::ControllerExceptions::NotAcceptable if _provided_formats.empty?
0
       if (fmt = params[:format]) && !fmt.empty?
0
         accepts = [fmt.to_sym]
...
234
235
236
237
 
238
239
240
...
397
398
399
400
 
401
402
403
...
234
235
236
 
237
238
239
240
...
397
398
399
 
400
401
402
403
0
@@ -234,7 +234,7 @@
0
 # It's mainly just adding vowels, as I ht cd wth n vwls :)
0
 # This represents the hard part of the work, all I did was change the
0
 # underlying parser.
0
-class REXMLUtilityNode # :nodoc:
0
+class REXMLUtilityNode
0
   attr_accessor :name, :attributes, :children, :type
0
   cattr_accessor :typecasts, :available_typecasts
0
 
0
@@ -397,7 +397,7 @@
0
   end
0
 end
0
 
0
-class ToHashParser # :nodoc:
0
+class ToHashParser
0
 
0
   def self.from_xml(xml)
0
     stack = []
...
3
4
5
6
 
7
8
9
...
3
4
5
 
6
7
8
9
0
@@ -3,7 +3,7 @@
0
 # Most of this code is taken from bitsweat's implementation in rails
0
 module Merb
0
 
0
- module SessionMixin #:nodoc:
0
+ module SessionMixin
0
 
0
     # Adds a before and after dispatch hook for setting up the cookie session
0
     # store.
...
1
2
3
 
4
5
6
...
108
109
110
111
 
112
113
114
...
1
2
 
3
4
5
6
...
108
109
110
 
111
112
113
114
0
@@ -1,6 +1,6 @@
0
 module Merb
0
 
0
- module SessionMixin #:nodoc:
0
+ module SessionMixin
0
 
0
     # Adds a before and after dispatch hook for setting up the memcached
0
     # session store.
0
@@ -108,7 +108,7 @@
0
       end
0
 
0
       # Don't try to reload in dev mode.
0
- def reloadable? #:nodoc:
0
+ def reloadable?
0
         false
0
       end
0
 
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 module Merb
0
 
0
- module SessionMixin #:nodoc:
0
+ module SessionMixin
0
 
0
     # Adds a before and after dispatch hook for setting up the memory session
0
     # store.
...
33
34
35
36
 
37
38
39
...
33
34
35
 
36
37
38
39
0
@@ -33,7 +33,7 @@
0
 # Merb::Logger.new(log{String, IO},level{Symbol, String})
0
 module Merb
0
 
0
- class << self #:nodoc:
0
+ class << self
0
     attr_accessor :logger
0
   end
0
 
...
567
568
569
570
 
571
572
573
...
567
568
569
 
570
571
572
573
0
@@ -567,7 +567,7 @@
0
   inflect.uncountable(%w(equipment information rice money species series fish sheep))
0
 end
0
 
0
-module Inflections #:nodoc:
0
+module Inflections
0
 
0
   def pluralize
0
     Inflector.pluralize(self)
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 
0
 
0
-class CodeStatistics #:nodoc:
0
+class CodeStatistics
0
 
0
   TEST_TYPES = %w(Units Functionals Unit\ tests Functional\ tests Integration\ tests)
0
 

Comments

    No one has commented yet.