Sha256: 4c7948292c954961080bfb690ff9daaaf22627c2cb9416a0e5978dfe5fd04eed

Contents?: true

Size: 1.16 KB

Versions: 1

Compression:

Stored size: 1.16 KB

Contents

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

Gem::Specification.new do |s|
  s.name        = "rflow-components-http"
  s.version     = RFlow::Components::HTTP::VERSION
  s.platform    = Gem::Platform::RUBY
  s.required_ruby_version = '>= 1.9'
  s.authors     = ["Michael L. Artz"]
  s.email       = ["michael.artz@redjack.com"]
  s.homepage    = "https://github.com/redjack/rflow-components-http"
  s.summary     = %q{HTTP client and server components for the RFlow FBP framework}
  s.description = %q{HTTP client and server components for the RFlow FBP framework.  Also includes the necessary HTTP::Request and HTTP::Response message types}

  s.rubyforge_project = "rflow-components-http"

  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_dependency 'rflow', '~> 0.0'
  s.add_dependency 'eventmachine_httpserver', '~> 0.2'

  s.add_development_dependency 'rspec', '~> 2.6'
  s.add_development_dependency 'rake', '~> 0.8'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rflow-components-http-0.0.7 rflow-components-http.gemspec