forked from pdeffendol/spatial_adapter
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Rakefile
41 lines (36 loc) · 1.2 KB
/
Rakefile
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
require 'rubygems'
require 'rspec/core/rake_task'
[:mysql, :mysql2, :postgresql].each do |adapter|
desc "Run specs for #{adapter} adapter"
RSpec::Core::RakeTask.new("spec:#{adapter.to_s}") do |spec|
spec.pattern = "spec/#{adapter}/*_spec.rb"
spec.rspec_opts = ['--backtrace']
end
end
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "spatial_adapter"
gem.summary = "Spatial Adapter for ActiveRecord"
gem.description = "Provides enhancements to ActiveRecord to handle spatial datatypes in PostgreSQL and MySQL."
gem.authors = ["Pete Deffendol", "Guilhem Vellut"]
gem.email = "[email protected]"
gem.homepage = "http://github.com/fragility/spatial_adapter"
gem.files = FileList[
"rails/*.rb",
"lib/**/*.rb",
"MIT-LICENSE",
"README.rdoc",
"VERSION"
]
gem.test_files = FileList[
"spec/**/*.rb",
"spec/README.txt"
]
gem.add_dependency 'activerecord', '>= 2.2.2'
gem.add_dependency 'GeoRuby', '>= 1.3.0'
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "WARNING: Jeweler is not available for building packages. Install it with: gem install jeweler"
end