File: cbor.gemspec

package info (click to toggle)
ruby-cbor 0.5.9.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 424 kB
  • sloc: ansic: 3,437; ruby: 1,732; makefile: 4
file content (25 lines) | stat: -rw-r--r-- 1,010 bytes parent folder | download
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
$:.push File.expand_path("../lib", __FILE__)
require 'cbor/version'

Gem::Specification.new do |s|
  s.name = "cbor"
  s.version = CBOR::VERSION
  s.summary = "CBOR, Concise Binary Object Representation."
  s.description = %q{CBOR is a library for the CBOR binary object representation format, based on Sadayuki Furuhashi's MessagePack library.}
  s.author = "Carsten Bormann, standing on the tall shoulders of Sadayuki Furuhashi"
  s.email = "cabo@tzi.org"
  s.license = "Apache-2.0"
  s.homepage = "http://cbor.io/"
#  s.has_rdoc = false
  s.files = Dir['lib/**/*','doclib/**/*','ext/**/*']
  s.test_files = Dir['spec/**/*']
  s.require_paths = ["lib"]
  s.extensions = ["ext/cbor/extconf.rb"]

  s.add_development_dependency 'bundler'
  s.add_development_dependency 'rake', ['~> 0.9.2']
  s.add_development_dependency 'rake-compiler', ['~> 0.8.3']
  s.add_development_dependency 'rspec', ['~> 2.11']
  s.add_development_dependency 'json', ['~> 1.7']
  s.add_development_dependency 'yard', ['~> 0.9.11']
end