-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproxee.gemspec
More file actions
33 lines (28 loc) · 1.22 KB
/
proxee.gemspec
File metadata and controls
33 lines (28 loc) · 1.22 KB
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
27
28
29
30
31
32
33
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "proxee/version"
Gem::Specification.new do |s|
s.name = "proxee"
s.version = Proxee::VERSION
s.authors = ["Arun Thampi"]
s.email = ["arun.thampi@gmail.com"]
s.homepage = ""
s.summary = %q{A Web-Debugging Proxy written using EventMachine}
s.description = %q{A Web-Debugging Proxy written using EventMachine}
s.rubyforge_project = "proxee"
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 'eventmachine', '~> 0.12.10'
s.add_dependency 'http_parser.rb', '~> 0.5.3'
s.add_dependency 'uuid', '~> 2.3.4'
s.add_dependency 'haml', '~> 3.1'
s.add_dependency 'sinatra', '~> 1.2'
s.add_dependency 'sqlite3', '~> 1.3'
s.add_dependency 'thin', '~> 1.2'
s.add_dependency 'activesupport', '~> 3.1.3'
s.add_dependency 'json', '~> 1.6.5'
s.add_development_dependency 'rspec', '~> 2.6.0'
s.add_development_dependency 'timecop', '~> 0.3.5'
end