Sha256: cc508756b44fba244d01d93d711329c3d96c677db4ec1dbda9b8780ce9258a4c

Contents?: true

Size: 1.44 KB

Versions: 17

Compression:

Stored size: 1.44 KB

Contents

# Compiling the Gem
# gem build spout.gemspec
# gem install ./spout-x.x.x.gem --no-ri --no-rdoc --local
#
# gem push spout-x.x.x.gem
# gem list -r spout
# gem install spout

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'spout/version'

Gem::Specification.new do |spec|
  spec.name          = "spout"
  spec.version       = Spout::VERSION::STRING
  spec.authors       = ["Remo Mueller"]
  spec.email         = ["remosm@gmail.com"]
  spec.description   = %q{Manage your data dictionary as a JSON repository, and easily export back to CSV.}
  spec.summary       = %q{Turn your CSV data dictionary into a JSON repository. Collaborate with others to update the data dictionary in JSON format. Generate new Data Dictionary from the JSON repository. Test and validate your data dictionary using built-in tests, or add your own for further validations.}
  spec.homepage      = "https://github.com/sleepepi"
  spec.license       = "CC BY-NC-SA 3.0"

  spec.files = Dir['{bin,lib}/**/*'] + ['CHANGELOG.md', 'LICENSE', 'Rakefile', 'README.md', 'spout.gemspec']
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test)/})
  spec.require_paths = ["lib"]

  spec.add_dependency "rake"
  spec.add_dependency "turn"
  spec.add_dependency "json"
  spec.add_dependency "colorize", "~> 0.5.8"

  spec.add_development_dependency "bundler", "~> 1.3"
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
spout-0.5.0 spout.gemspec
spout-0.5.0.beta3 spout.gemspec
spout-0.5.0.beta2 spout.gemspec
spout-0.5.0.beta spout.gemspec
spout-0.4.1 spout.gemspec
spout-0.4.0 spout.gemspec
spout-0.4.0.beta spout.gemspec
spout-0.3.0 spout.gemspec
spout-0.3.0.rc4 spout.gemspec
spout-0.3.0.rc3 spout.gemspec
spout-0.3.0.rc2 spout.gemspec
spout-0.3.0.rc spout.gemspec
spout-0.2.0 spout.gemspec
spout-0.1.0 spout.gemspec
spout-0.1.0.rc5 spout.gemspec
spout-0.1.0.rc4 spout.gemspec
spout-0.1.0.rc3 spout.gemspec