public
Rubygem
Description: Most awesome pagination solution for Ruby
Homepage: http://github.com/mislav/will_paginate/wikis
Clone URL: git://github.com/mislav/will_paginate.git
gemify
mislav (author)
Sun Apr 06 17:37:12 -0700 2008
commit  1464c8bfde3372b6a0b7bbac9bd39e7caad69454
tree    e1512ecdd7c1a7b382c5c4b1ec982e2cd76b2970
parent  5721240cf0f58d3a8fe74d4c31eb5a36bba65a13
...
1
2
 
 
 
...
 
 
1
2
3
0
@@ -1,2 +1,3 @@
0
-/pkg
0
-/doc
0
+/pkg/
0
+/doc/
0
+/rails
...
67
68
69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
...
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
0
@@ -67,3 +67,17 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
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.