forked from terrbear/mongrations
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRakefile
More file actions
23 lines (22 loc) · 842 Bytes
/
Copy pathRakefile
File metadata and controls
23 lines (22 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rubygems'
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "jonbell-mongrations"
gem.summary = %Q{Data migrating for MongoMapper}
gem.description = %Q{Mongrations aims to be similar to ActiveRecord's data migrations, except
instead of worrying about schema changes, offering a way to change data when
necessary}
gem.email = "jonbell@spamcop.net"
gem.homepage = "http://github.com/jonbell/mongrations"
gem.authors = ["jonbell"]
gem.add_dependency "mongo_mapper", ">= 0.11.0"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end