Sha256: 72a9a2751920a57f04308d5885b1d3e1973664af16e8db184c62da1e1893ca34
Contents?: true
Size: 1.1 KB
Versions: 3
Compression:
Stored size: 1.1 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'Topographer/version' Gem::Specification.new do |spec| spec.name = 'topographer' spec.version = Topographer::VERSION spec.authors = ['Mike Simpson', 'Emerson Huitt'] spec.email = ['mjs2600@gmail.com', 'ehuitt@gmail.com'] spec.description = %q{Topographer enables importing of models from various input sources.} spec.summary = %q{Topographer allows the mapping of columnar input data to fields for active record models. This facilitates importing from a variety of sources.} spec.homepage = "" spec.license = 'MIT' spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.add_runtime_dependency('activesupport', ['>= 3']) spec.add_development_dependency('bundler', ['~> 1.3']) spec.add_development_dependency('rake') spec.add_development_dependency('rspec') end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
topographer-0.0.3 | topographer.gemspec |
topographer-0.0.2 | topographer.gemspec |
topographer-0.0.1 | topographer.gemspec |