Sha256: 25d1ba6c64406e58bad2295b2b7cf76ec3d0ad1b75c6e9395746559023792e2b
Contents?: true
Size: 1.36 KB
Versions: 2
Compression:
Stored size: 1.36 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 "amqp", ">= 0.9.4" 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 "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.0.14 | firehose.gemspec |
firehose-0.0.13 | firehose.gemspec |