Sha256: 1a0c9d58eb4169f61ce635f76ec844ebe5f2b78fbfeb4ba92e9f5836fc7919bd
Contents?: true
Size: 1.41 KB
Versions: 1
Compression:
Stored size: 1.41 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'ferry/version' Gem::Specification.new do |spec| spec.name = "ferry" spec.version = Ferry::VERSION spec.authors = ["Anthony Corletti", "Logan Watanabe", "Larry Heimann"] spec.email = ["anthcor@gmail.com", "loganwatanabe@gmail.com", "profh@cmu.edu"] spec.summary = "Ferry is a data migration and data manipulation tool" spec.description = "Ferry is a data migration and data manipulation tool that seeks to simplify the increasingly prevalent big data problems that tech companies face" spec.homepage = "https://github.com/cmu-is-projects/" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") 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_development_dependency "activerecord" spec.add_development_dependency "bundler", "~> 1.6" # spec.add_development_dependency "progressbar" spec.add_development_dependency "rake" spec.add_development_dependency "minitest" spec.add_development_dependency "rspec" spec.add_development_dependency "pg" spec.add_development_dependency "sqlite3" # need to look over installation problems with mysql :( # spec.add_development_dependency "mysql" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ferry-0.0.8 | ferry.gemspec |