-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRakefile
More file actions
27 lines (23 loc) · 861 Bytes
/
Rakefile
File metadata and controls
27 lines (23 loc) · 861 Bytes
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
require 'rubygems'
require 'rake'
require 'echoe'
require 'rake/testtask'
require 'rdoc/task'
desc 'Default: run unit tests.'
task :default => :test
desc 'Test the gem.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.pattern = 'spec/pagem_spec.rb'
t.verbose = true
end
Echoe.new('pagem', '1.0.7') do |p|
p.description = "Pagination helper that works off of scopes (named) to facilitate data retrieval and display."
p.url = "http://github.com/mdsol/pagem"
p.author = "Ben Young"
p.email = "byoung@mdsol.com"
p.ignore_pattern = []
p.development_dependencies = ['rails =3.1.12']
p.retain_gemspec = true
end
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }