Sha256: 0e13cec0d567c70e773459f0c145b579f161590c7732a17d48434b6a73382b29
Contents?: true
Size: 1.04 KB
Versions: 6
Compression:
Stored size: 1.04 KB
Contents
$LOAD_PATH.unshift File.expand_path("../lib", __FILE__) require 'bindata/version' Gem::Specification.new do |s| s.name = 'bindata' s.version = BinData::VERSION s.platform = Gem::Platform::RUBY s.summary = 'A declarative way to read and write binary file formats' s.author = 'Dion Mendel' s.email = 'bindata@dm9.info' s.homepage = 'https://github.com/dmendel/bindata' s.require_path = 'lib' s.extra_rdoc_files = ['NEWS.rdoc'] s.rdoc_options << '--main' << 'NEWS.rdoc' s.files = `git ls-files`.split("\n") s.license = 'Ruby' s.add_development_dependency('rake') s.add_development_dependency('minitest', "> 5.0.0", "< 5.12.0") s.add_development_dependency('coveralls') s.description = <<-END.gsub(/^ +/, "") BinData is a declarative way to read and write binary file formats. This means the programmer specifies *what* the format of the binary data is, and BinData works out *how* to read and write data in this format. It is an easier ( and more readable ) alternative to ruby's #pack and #unpack methods. END end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
bindata-2.4.14 | bindata.gemspec |
bindata-2.4.13 | bindata.gemspec |
bindata-2.4.12 | bindata.gemspec |
bindata-2.4.11 | bindata.gemspec |
bindata-2.4.10 | bindata.gemspec |
bindata-2.4.9 | bindata.gemspec |