Sha256: 2324b0fb5dac09c23c11928d0e666cf225b7eecf176b0447f42b51fa20740e7f
Contents?: true
Size: 1.73 KB
Versions: 2
Compression:
Stored size: 1.73 KB
Contents
# frozen_string_literal: true # Compiling the Gem # gem build spout.gemspec # gem install ./spout-x.x.x.gem --no-document --local # # gem push spout-x.x.x.gem # gem list -r spout # gem install spout lib = File.expand_path("lib", __dir__) $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 = "Manage your data dictionary as a JSON repository, and easily export back to CSV." spec.summary = "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/spout" # spec.required_ruby_version = ">= 2.6.1" # spec.required_rubygems_version = ">= 3.0.1" spec.required_ruby_version = ">= 2.5.1" spec.required_rubygems_version = ">= 2.7.6" spec.license = "MIT" 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 "bundler", ">= 1.3.0" spec.add_dependency "json" spec.add_dependency "minitest" spec.add_dependency "minitest-reporters" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spout-1.0.0.beta2 | spout.gemspec |
spout-1.0.0.beta1 | spout.gemspec |