Sha256: 23952c4afe2022b33c65b5734c9a95d7a70676a8b1c0650f305ff6724b12714f

Contents?: true

Size: 1.31 KB

Versions: 9

Compression:

Stored size: 1.31 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "cartodb-importer/version"

Gem::Specification.new do |s|
  s.name        = "cartodb-importer"
  s.version     = CartoDB::Importer::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Fernando Blat", "Andrew Hill", "Javier de la Torre"]
  s.email       = ["andrew@vizzuality.com"]
  s.homepage    = ""
  s.summary     = %q{Import CSV, SHP, and other files with data into a PostgreSQL table}
  s.description = %q{Import CSV, SHP, and other files with data into a PostgreSQL table}

  s.rubyforge_project = "cartodb-importer"

  s.files         = `git ls-files`.split("\n").reject{|fn| fn =~ /spec\/support\/data/}
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n").reject{|fn| fn =~ /spec\/support\/data/}
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
  
  s.add_runtime_dependency "pg", "~> 0.11"
  s.add_runtime_dependency "sequel"
  s.add_runtime_dependency "roo"
  s.add_runtime_dependency "spreadsheet"
  s.add_runtime_dependency "google-spreadsheet-ruby"
  s.add_runtime_dependency "rubyzip"
  s.add_runtime_dependency "builder"
  
  s.add_development_dependency "rspec"
  s.add_development_dependency "mocha"
  s.add_development_dependency "ruby-debug19"
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
cartodb-importer-0.2.14 cartodb-importer.gemspec
cartodb-importer-0.2.13 cartodb-importer.gemspec
cartodb-importer-0.2.12 cartodb-importer.gemspec
cartodb-importer-0.2.11 cartodb-importer.gemspec
cartodb-importer-0.2.10 cartodb-importer.gemspec
cartodb-importer-0.2.9 cartodb-importer.gemspec
cartodb-importer-0.2.8 cartodb-importer.gemspec
cartodb-importer-0.2.7 cartodb-importer.gemspec
cartodb-importer-0.2.6 cartodb-importer.gemspec