Sha256: d50b99a6cf6d0030d2be960fb174609f3440e4a6146fe80e2c13c46ae63a6cb0

Contents?: true

Size: 1.4 KB

Versions: 2

Compression:

Stored size: 1.4 KB

Contents

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

Gem::Specification.new do |s|
  s.name        = "firehose"
  s.version     = Firehose::VERSION
  s.authors     = ["Brad Gessler", "Steel Fu"]
  s.email       = ["brad@polleverywhere.com", "steel@polleverywhere.com"]
  s.homepage    = "http://firehose.io/"
  s.summary     = %q{Build realtime Ruby web applications}
  s.description = %q{Firehose is a realtime web application toolkit for building realtime Ruby web applications.}

  s.rubyforge_project = "firehose"

  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"]

  # specify any dependencies here; for example:
  s.add_runtime_dependency "eventmachine", ">= 1.0.0.beta"
  s.add_runtime_dependency "em-hiredis"
  s.add_runtime_dependency "thin"
  s.add_runtime_dependency "thor"
  s.add_runtime_dependency "faraday"
  s.add_runtime_dependency "websocket-rack"
  s.add_runtime_dependency "em-http-request", "~> 1.0.0"

  s.add_development_dependency "rspec"
  s.add_development_dependency "webmock"
  s.add_development_dependency "guard-rspec"
  s.add_development_dependency "guard-bundler"
  s.add_development_dependency "guard-coffeescript"
  s.add_development_dependency "em-websocket-client"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
firehose-0.1.1 firehose.gemspec
firehose-0.1.0 firehose.gemspec