Sha256: 861dfbcb5394d915a97a20f932d90acc769ad8fcb01fd1ac211e5ccd7abf938d
Contents?: true
Size: 1.17 KB
Versions: 5
Compression:
Stored size: 1.17 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 = 'dion@lostrealm.com' s.homepage = 'http://github.com/dmendel/bindata' s.rubyforge_project = 'bindata' s.require_path = 'lib' s.has_rdoc = true 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") s.add_development_dependency('haml', ["< 4.0.0"]) s.add_development_dependency('maruku') s.add_development_dependency('syntax') 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
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
bindata-1.8.3 | bindata.gemspec |
bindata-1.8.2 | bindata.gemspec |
bindata-1.8.1 | bindata.gemspec |
bindata-1.8.0 | bindata.gemspec |
bindata-1.6.0 | bindata.gemspec |