Sha256: c727d4991d64726c789fa7674c6163b30de71111a8b0a2ce55156d6dce06e0e9

Contents?: true

Size: 1.08 KB

Versions: 12

Compression:

Stored size: 1.08 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 = '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('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

12 entries across 12 versions & 1 rubygems

Version Path
bindata-2.4.4 bindata.gemspec
bindata-2.4.3 bindata.gemspec
bindata-2.4.2 bindata.gemspec
bindata-2.4.1 bindata.gemspec
bindata-2.4.0 bindata.gemspec
bindata-2.3.5 bindata.gemspec
bindata-2.3.4 bindata.gemspec
bindata-2.3.3 bindata.gemspec
bindata-2.3.2 bindata.gemspec
bindata-2.3.1 bindata.gemspec
bindata-2.3.0 bindata.gemspec
bindata-2.2.0 bindata.gemspec