Sha256: 5a636006bdf2553aa0126935b925ea0d5a9b3c07a13062e8e771830d1e19583b
Contents?: true
Size: 1.4 KB
Versions: 4
Compression:
Stored size: 1.4 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_development_dependency "bundler", "~> 1.3" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
spout-0.1.0.rc2 | spout.gemspec |
spout-0.1.0.rc | spout.gemspec |
spout-0.1.0.pre | spout.gemspec |
spout-0.0.1.pre | spout.gemspec |