Skip to content

Commit

Permalink
Add gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
ajsharp committed Dec 21, 2011
1 parent 095c21e commit 9d5fece
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions em-stathat.gemspec
@@ -0,0 +1,21 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "em-stathat/version"

Gem::Specification.new do |s|
s.name = "em-stathat"
s.version = EventMachine::Stathat::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Alex Sharp"]
s.email = ["ajsharp@gmail.com"]
s.homepage = "https://github.com/ajsharp/em-stathat"
s.summary = %q{An EventMachine-compatible async wrapper for the stathat api.}
s.description = %q{Essentially a clone of the normal stathat gem, only for use with EventMachine.}

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]

s.add_dependency 'em-http-request', '~> 1.0'
end

0 comments on commit 9d5fece

Please sign in to comment.