forked from oesmith/puffing-billy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
puffing-billy.gemspec
26 lines (23 loc) · 991 Bytes
/
puffing-billy.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/billy/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Olly Smith"]
gem.email = ["[email protected]"]
gem.description = %q{TODO: Write a gem description}
gem.summary = %q{TODO: Write a gem summary}
gem.homepage = ""
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "puffing-billy"
gem.require_paths = ["lib"]
gem.version = Billy::VERSION
gem.add_development_dependency "rspec"
gem.add_development_dependency "thin"
gem.add_development_dependency "faraday"
gem.add_runtime_dependency "eventmachine"
gem.add_runtime_dependency "em-http-request"
gem.add_runtime_dependency "eventmachine_httpserver"
gem.add_runtime_dependency "http_parser.rb"
gem.add_runtime_dependency "yajl-ruby"
end