Sha256: 87b24ca495c65542ffda8640a7566d2c4ba5d24604eeeef9c972c09f0573c0eb
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 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.license = "Apache-2.0" 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', '~> 1.0.0a3' s.add_dependency 'eventmachine_httpserver_update', '~> 0.2.1' s.add_development_dependency 'rspec', '~> 3.0' s.add_development_dependency 'rspec-collection_matchers', '~> 1.0' s.add_development_dependency 'rake', '>= 10.3' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rflow-components-http-1.0.0a4 | rflow-components-http.gemspec |