public
Description: Simple pagination for ActiveResource
Homepage:
Clone URL: git://github.com/phorsfall/resourceful_pagination.git
100644 24 lines (16 sloc) 0.653 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.
 
load 'rake_tasks/setup.rb'
 
ensure_in_path 'lib'
require 'resourceful_pagination'
 
task :default => 'spec:run'
 
PROJ.name = 'resourceful_pagination'
PROJ.authors = 'Paul Horsfall'
PROJ.email = 'paul@deaddeadgood.com'
PROJ.url = 'http://github.com/phorsfall/resourceful_pagination/'
PROJ.version = ResourcefulPagination::VERSION
PROJ.rubyforge.name = 'resourceful_pagination'
 
PROJ.exclude = %w(tmp$ bak$ ~$ CVS \.svn/ \.git/ ^pkg/ .DS_Store)
 
PROJ.spec.opts << '--color'
 
# EOF