Sha256: c371447c1760138bf637be1c42202d04df019054da9637e37d7f83e41aeaecb9

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "nn-core/version"

Gem::Specification.new do |s|
  s.name        = "nn-core"
  s.version     = NNCore::VERSION
  s.authors     = ["Chuck Remes"]
  s.email       = ["git@chuckremes.com"]
  s.homepage    = "http://github.com/chuckremes/nn-core"
  s.summary     = %q{Wraps the nanomsg networking library using Ruby FFI (foreign function interface).}
  s.description = %q{Wraps the nanomsg networking library using the ruby FFI (foreign
function interface). It only exposes the native C API to Ruby. Other gems should use this gem
to build an API using Ruby idioms.}

  s.rubyforge_project = "nn-core"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]

  s.add_runtime_dependency "ffi"
  s.add_development_dependency "rspec", ["~> 3.2"]
  s.add_dependency "rake"
  s.extensions = %w(ext/Rakefile)
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nn-core-0.4.0 nn-core.gemspec