postgis_adapter.gemspec in postgis_adapter-0.7.8 vs postgis_adapter.gemspec in postgis_adapter-0.7.9
- old
+ new
@@ -1,76 +1,19 @@
-# Generated by jeweler
-# DO NOT EDIT THIS FILE DIRECTLY
-# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
-# -*- encoding: utf-8 -*-
+Gem::Specification.new do |spec|
+ spec.name = 'postgis_adapter'
+ spec.version = '0.7.9'
+ spec.authors = ['Marcos Piccinini']
+ spec.summary = 'PostGIS Adapter for Active Record'
+ spec.email = 'x@nofxx.com'
+ spec.homepage = 'http://github.com/nofxx/postgis_adapter'
-Gem::Specification.new do |s|
- s.name = %q{postgis_adapter}
- s.version = "0.7.8"
+ spec.rdoc_options = ['--charset=UTF-8']
+ spec.rubyforge_project = 'postgis_adapter'
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
- s.authors = ["Marcos Piccinini"]
- s.date = %q{2010-02-26}
- s.description = %q{Execute PostGIS functions on Active Record}
- s.email = %q{x@nofxx.com}
- s.extra_rdoc_files = [
- "README.rdoc"
- ]
- s.files = [
- ".gitignore",
- "History.txt",
- "MIT-LICENSE",
- "README.rdoc",
- "Rakefile",
- "VERSION",
- "init.rb",
- "lib/postgis_adapter.rb",
- "lib/postgis_adapter/acts_as_geom.rb",
- "lib/postgis_adapter/common_spatial_adapter.rb",
- "lib/postgis_functions.rb",
- "lib/postgis_functions/bbox.rb",
- "lib/postgis_functions/class.rb",
- "lib/postgis_functions/common.rb",
- "postgis_adapter.gemspec",
- "rails/init.rb",
- "spec/db/models_postgis.rb",
- "spec/db/schema_postgis.rb",
- "spec/postgis_adapter/acts_as_geom_spec.rb",
- "spec/postgis_adapter/common_spatial_adapter_spec.rb",
- "spec/postgis_adapter_spec.rb",
- "spec/postgis_functions/bbox_spec.rb",
- "spec/postgis_functions/class_spec.rb",
- "spec/postgis_functions/common_spec.rb",
- "spec/postgis_functions_spec.rb",
- "spec/spec.opts",
- "spec/spec_helper.rb"
- ]
- s.homepage = %q{http://github.com/nofxx/postgis_adapter}
- s.rdoc_options = ["--charset=UTF-8"]
- s.require_paths = ["lib"]
- s.rubyforge_project = %q{postgis_adapter}
- s.rubygems_version = %q{1.3.5}
- s.summary = %q{PostGIS Adapter for Active Record}
- s.test_files = [
- "spec/db/models_postgis.rb",
- "spec/db/schema_postgis.rb",
- "spec/postgis_adapter/acts_as_geom_spec.rb",
- "spec/postgis_adapter/common_spatial_adapter_spec.rb",
- "spec/postgis_functions_spec.rb",
- "spec/spec_helper.rb",
- "spec/postgis_adapter_spec.rb",
- "spec/postgis_functions/class_spec.rb",
- "spec/postgis_functions/common_spec.rb",
- "spec/postgis_functions/bbox_spec.rb"
- ]
+ spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
+ spec.test_files = Dir['spec/**/*.rb']
+ spec.extra_rdoc_files = ['README.rdoc']
- if s.respond_to? :specification_version then
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
- s.specification_version = 3
+ spec.add_dependency 'GeoRuby'
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
- else
- end
- else
- end
+ spec.description = 'Execute PostGIS functions on Active Record'
end
-