public
Description: Merb More: The Full Stack. Take what you need; leave what you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/wycats/merb-more.git
Search Repo:
remove :nodoc: from all -more DO NOT USE :nodoc: !!
ezmobius (author)
Mon May 12 17:33:42 -0700 2008
commit  7ee51d338367629a07ec401fb80eb9ee3418deae
tree    b502a3929298af4205025336d851104c0b298e74
parent  5790d79ee3ba63de69bdf242ea66a877ded703f6
...
1
2
3
 
4
5
6
...
84
85
86
87
 
88
89
90
91
 
92
93
94
...
1
2
 
3
4
5
6
...
84
85
86
 
87
88
89
90
 
91
92
93
94
0
@@ -1,6 +1,6 @@
0
 require 'ruby2ruby'
0
 
0
-class ParseTreeArray < Array #:nodoc:
0
+class ParseTreeArray < Array
0
   def self.translate(*args)
0
     sexp = ParseTree.translate(*args)
0
     # ParseTree.translate returns [nil] if called on an inherited method, so walk
0
@@ -84,10 +84,10 @@ module GetArgs
0
   end
0
 end
0
 
0
-class UnboundMethod #:nodoc:
0
+class UnboundMethod
0
   include GetArgs
0
 end
0
 
0
-class Method #:nodoc:
0
+class Method
0
   include GetArgs
0
 end
0
\ No newline at end of file
...
14
15
16
17
18
19
20
...
14
15
16
 
17
18
19
0
@@ -14,7 +14,6 @@ module Merb
0
     
0
     # Helpers for handling asset files.
0
     module AssetHelpers
0
- # :nodoc:
0
       ASSET_FILE_EXTENSIONS = {
0
         :javascript => ".js",
0
         :stylesheet => ".css"
...
1
2
3
4
 
5
6
7
...
1
2
3
 
4
5
6
7
0
@@ -1,7 +1,7 @@
0
 if defined?(Merb::Plugins)
0
   Merb::Plugins.add_rakefiles "merb-cache/merbtasks"
0
   unless 1.respond_to? :minutes
0
- class Numeric #:nodoc:
0
+ class Numeric
0
       def minutes; self * 60; end
0
       def from_now(now = Time.now); now + self; end
0
     end
...
6
7
8
9
 
10
11
12
...
6
7
8
 
9
10
11
12
0
@@ -6,7 +6,7 @@ class Merb::Cache::DatabaseStore
0
     prepare
0
   end
0
 
0
- class OrmNotFound < Exception #:nodoc:
0
+ class OrmNotFound < Exception #
0
     def initialize
0
       super("No valid ORM found (did you specify use_orm in init.rb?)")
0
     end
...
9
10
11
12
 
13
14
15
...
9
10
11
 
12
13
14
15
0
@@ -9,7 +9,7 @@ class Merb::Cache::FileStore
0
     prepare
0
   end
0
 
0
- class NotAccessible < Exception #:nodoc:
0
+ class NotAccessible < Exception #
0
     def initialize(message)
0
       super("Cache directories are not readable/writeable (#{message})")
0
     end
...
6
7
8
9
 
10
11
12
13
14
15
 
16
17
18
...
6
7
8
 
9
10
11
12
13
14
 
15
16
17
18
0
@@ -6,13 +6,13 @@ class Merb::Cache::MemcacheStore
0
     prepare
0
   end
0
 
0
- class NotReady < Exception #:nodoc:
0
+ class NotReady < Exception
0
     def initialize
0
       super("Memcache server is not ready")
0
     end
0
   end
0
 
0
- class NotDefined < Exception #:nodoc:
0
+ class NotDefined < Exception
0
     def initialize
0
       super("Memcache is not defined (require it in init.rb)")
0
     end
...
5
6
7
8
 
9
10
11
...
146
147
148
149
150
 
 
151
152
153
154
155
 
156
157
158
...
5
6
7
 
8
9
10
11
...
146
147
148
 
 
149
150
151
152
153
154
 
155
156
157
158
0
@@ -5,7 +5,7 @@ require "merb-cache/cache-fragment"
0
 class Merb::Cache
0
   attr_reader :config, :store
0
 
0
- class StoreNotFound < Exception #:nodoc:
0
+ class StoreNotFound < Exception
0
     def initialize(cache_store)
0
       super("cache_store (#{cache_store}) not found (not implemented?)")
0
     end
0
@@ -146,13 +146,13 @@ class Merb::Cache
0
   end
0
 end
0
 
0
-module Merb #:nodoc:
0
- class Controller #:nodoc:
0
+module Merb
0
+ class Controller
0
     cattr_reader :_cache
0
     @@_cache = Merb::Cache.new
0
     # extends Merb::Controller with new instance methods
0
     include Merb::Cache::ControllerInstanceMethods
0
- class << self #:nodoc:
0
+ class << self
0
       # extends Merb::Controller with new class methods
0
       include Merb::Cache::ControllerClassMethods
0
     end
...
9
10
11
12
 
13
14
15
...
127
128
129
130
 
131
132
133
...
9
10
11
 
12
13
14
15
...
127
128
129
 
130
131
132
133
0
@@ -9,7 +9,7 @@ class Autotest::Merb < Autotest
0
   # +fixtures_dir+:: the directory to find fixtures in
0
   attr_accessor :model_tests_dir, :controller_tests_dir, :view_tests_dir, :fixtures_dir
0
   
0
- def initialize # :nodoc:
0
+ def initialize
0
     super
0
     
0
     initialize_test_layout
0
@@ -127,7 +127,7 @@ private
0
   # => "login_controller_test.rb"
0
   # > test_for("form", :view)
0
   # => "form_view_spec.rb" # If you're running a RSpec-like suite
0
- def test_for(filename, kind_of_test) # :nodoc:
0
+ def test_for(filename, kind_of_test)
0
     name = [filename]
0
     name << kind_of_test.to_s if kind_of_test == :view
0
     name << "test"
...
11
12
13
14
 
15
16
17
...
201
202
203
204
 
205
206
207
...
11
12
13
 
14
15
16
17
...
201
202
203
 
204
205
206
207
0
@@ -11,7 +11,7 @@ class Autotest::MerbRspec < Autotest
0
   # +fixtures_dir+:: the directory to find fixtures in
0
   attr_accessor :model_tests_dir, :controller_tests_dir, :view_tests_dir, :fixtures_dir
0
 
0
- def initialize # :nodoc:
0
+ def initialize
0
     super
0
 
0
     initialize_test_layout
0
@@ -201,7 +201,7 @@ private
0
   # => "login_controller_test.rb"
0
   # > test_for("form", :view)
0
   # => "form_view_spec.rb" # If you're running a RSpec-like suite
0
- def test_for(filename, kind_of_test) # :nodoc:
0
+ def test_for(filename, kind_of_test)
0
     name = [filename]
0
     name << kind_of_test.to_s if kind_of_test == :view
0
     name << "spec"
...
1
2
 
3
4
5
...
1
 
2
3
4
5
0
@@ -1,5 +1,5 @@
0
 # Includes files into the class to allow it to minimally delegates to a web controller
0
-module Merb #:nodoc:
0
+module Merb
0
   module Mixins
0
     module WebController
0
       

Comments

    No one has commented yet.