Sha256: f07ddd519b3200d7adf15fbf7d79e4061abdece6a9de96f0bc66e580a4025a66

Contents?: true

Size: 1.04 KB

Versions: 1

Compression:

Stored size: 1.04 KB

Contents

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

Gem::Specification.new do |s|
  s.name        = "ffi-rxs"
  s.version     = XS::VERSION
  s.authors     = ["Chris Duncan"]
  s.email       = ["celldee@gmail.com"]
  s.homepage    = "http://github.com/celldee/ffi-rxs"
  s.summary     = %q{This gem wraps the Crossroads I/O networking library using Ruby FFI (foreign function interface).}
  s.description = %q{This gem wraps the Crossroads I/O networking library using the ruby FFI (foreign
function interface). It's a pure ruby wrapper so this gem can be loaded
and run by any ruby runtime that supports FFI. That's all of them:
MRI 1.9.x, Rubinius and JRuby.}

  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", ["~> 2.6"]
  s.add_development_dependency "rake"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ffi-rxs-1.0.0 ffi-rxs.gemspec