Sha256: b474894476878707f4ef98d736cdc3d9af9a3b068d487caac3436ff07b6d89cd
Contents?: true
Size: 1003 Bytes
Versions: 4
Compression:
Stored size: 1003 Bytes
Contents
lib = File.expand_path("lib", __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "vdf/version" Gem::Specification.new do |spec| spec.name = "vdf" spec.version = VDF::VERSION spec.authors = ["sapphyrus"] spec.email = ["phil5686@gmail.com"] spec.summary = %q{Parses Valve's KeyValue format to Ruby Hashes and back} spec.homepage = "https://github.com/sapphyrus/vdf" spec.license = "MIT" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/sapphyrus/vdf" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 2.0" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
vdf-1.0.3 | vdf.gemspec |
vdf-1.0.2 | vdf.gemspec |
vdf-1.0.1 | vdf.gemspec |
vdf-1.0.0 | vdf.gemspec |