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:
gemify
mislav (author)
Sun Apr 06 17:37:12 -0700 2008
commit  1464c8bfde3372b6a0b7bbac9bd39e7caad69454
tree    e1512ecdd7c1a7b382c5c4b1ec982e2cd76b2970
parent  5721240cf0f58d3a8fe74d4c31eb5a36bba65a13
...
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
0
@@ -1 +1,10 @@
0
+---
0
+:email: mislav.marohnic@gmail.com
0
+:has_rdoc: true
0
+:homepage: http://github.com/mislav/will_paginate
0
+:name: will_paginate
0
+:rubyforge_project: will-paginate
0
+:version: 2.2.0
0
+:author: "Mislav Marohni\xC4\x87"
0
+:summary: Most awesome pagination solution for Rails
...
1
2
 
 
 
...
 
 
1
2
3
0
@@ -1,3 +1,4 @@
0
-/pkg
0
-/doc
0
+/pkg/
0
+/doc/
0
+/rails
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
0
@@ -1 +1,47 @@
0
+LICENSE
0
+README.rdoc
0
+Rakefile
0
+examples
0
+examples/apple-circle.gif
0
+examples/index.haml
0
+examples/index.html
0
+examples/pagination.css
0
+examples/pagination.sass
0
+init.rb
0
+lib
0
+lib/will_paginate
0
+lib/will_paginate.rb
0
+lib/will_paginate/array.rb
0
+lib/will_paginate/collection.rb
0
+lib/will_paginate/core_ext.rb
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/view_helpers.rb
0
+test
0
+test/boot.rb
0
+test/collection_test.rb
0
+test/console
0
+test/database.yml
0
+test/finder_test.rb
0
+test/fixtures
0
+test/fixtures/admin.rb
0
+test/fixtures/developer.rb
0
+test/fixtures/developers_projects.yml
0
+test/fixtures/project.rb
0
+test/fixtures/projects.yml
0
+test/fixtures/replies.yml
0
+test/fixtures/reply.rb
0
+test/fixtures/schema.rb
0
+test/fixtures/topic.rb
0
+test/fixtures/topics.yml
0
+test/fixtures/user.rb
0
+test/fixtures/users.yml
0
+test/helper.rb
0
+test/lib
0
+test/lib/activerecord_test_case.rb
0
+test/lib/activerecord_test_connector.rb
0
+test/lib/load_fixtures.rb
0
+test/lib/view_test_process.rb
0
+test/view_test.rb
...
67
68
69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
0
@@ -67,4 +67,18 @@
0
   rdoc.options << '--charset=UTF-8'
0
   rdoc.options << '--webcvs=http://github.com/mislav/will_paginate/tree/master/'
0
 end
0
+
0
+task :manifest do
0
+ list = Dir['**/*']
0
+
0
+ File.read('.gitignore').each_line do |glob|
0
+ glob = glob.chomp.sub(/^\//, '')
0
+ list -= Dir[glob]
0
+ puts "excluding #{glob}"
0
+ end
0
+
0
+ File.open('.manifest', 'w') do |file|
0
+ file.write list.sort.join("\n")
0
+ end
0
+end

Comments

    No one has commented yet.