File: bindata.gemspec

package info (click to toggle)
ruby-bindata 2.3.5-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 568 kB
  • ctags: 947
  • sloc: ruby: 8,357; makefile: 3
file content (31 lines) | stat: -rw-r--r-- 1,111 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
$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