public
Fork of mislav/will_paginate
Description: Most awesome pagination solution for Rails
Homepage: http://github.com/mislav/will_paginate/wikis
Clone URL: git://github.com/technoweenie/will_paginate.git
Search Repo:
added WillPaginate::VERSION
mislav (author)
Sun Apr 06 18:53:08 -0700 2008
commit  9afc5e83dc2e6cd0ce49b184a50ba6858524e474
tree    4450019a2e55148e8e5e47e1b018afaca65c5f8d
parent  3bda0baf122f6a6891ae263248f08474fc141659
...
1
2
 
3
 
...
 
 
1
2
3
0
@@ -1,4 +1,4 @@
0
-/pkg/
0
-/doc/
0
+/doc
0
 /rails
0
+*.gem
...
17
18
19
 
20
21
22
...
17
18
19
20
21
22
23
0
@@ -17,6 +17,7 @@
0
 lib/will_paginate/finder.rb
0
 lib/will_paginate/named_scope.rb
0
 lib/will_paginate/named_scope_patch.rb
0
+lib/will_paginate/version.rb
0
 lib/will_paginate/view_helpers.rb
0
 test
0
 test/boot.rb
...
54
55
56
57
 
 
 
 
 
58
59
60
...
54
55
56
 
57
58
59
60
61
62
63
64
0
@@ -54,7 +54,11 @@
0
 desc 'Generate RDoc documentation for the will_paginate plugin.'
0
 Rake::RDocTask.new(:rdoc) do |rdoc|
0
   files = ['README.rdoc', 'LICENSE']
0
- files << FileList.new('lib/**/*.rb').exclude('lib/will_paginate/named_scope*').exclude('lib/will_paginate/array.rb')
0
+ files << FileList.new('lib/**/*.rb').
0
+ exclude('lib/will_paginate/named_scope*').
0
+ exclude('lib/will_paginate/array.rb').
0
+ exclude('lib/will_paginate/version.rb')
0
+
0
   rdoc.rdoc_files.add(files)
0
   rdoc.main = "README.rdoc" # page to start on
0
   rdoc.title = "will_paginate documentation"
...
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
0
@@ -1 +1,10 @@
0
+module WillPaginate #:nodoc:
0
+ module VERSION #:nodoc:
0
+ MAJOR = 2
0
+ MINOR = 2
0
+ TINY = 0
0
+
0
+ STRING = [MAJOR, MINOR, TINY].join('.')
0
+ end
0
+end

Comments

    No one has commented yet.