-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_server.gemspec
43 lines (38 loc) · 1.62 KB
/
test_server.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'test_server/version'
Gem::Specification.new do |spec|
spec.name = 'test_server'
spec.version = TestServer::VERSION
spec.authors = ['Dennis Günnewig']
spec.email = ['dg1@vrnetze.de']
spec.summary = %q{Test server for proxies}
spec.description = %q{Test server for proxies}
#spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
#spec.add_dependency 'bundler'
spec.add_runtime_dependency 'addressable'
spec.add_runtime_dependency 'bcrypt', '~> 3.1.7'
spec.add_runtime_dependency 'coffee-rails', '~> 4.0.0'
spec.add_runtime_dependency 'compass', '~>0.12.4'
spec.add_runtime_dependency 'haml', '~>4.0.0'
spec.add_runtime_dependency 'haml-rails'
spec.add_runtime_dependency 'i18n'
spec.add_runtime_dependency 'rails-i18n'
spec.add_runtime_dependency 'jbuilder', '~> 2.0'
spec.add_runtime_dependency 'jquery-rails'
spec.add_runtime_dependency 'pager'
spec.add_runtime_dependency 'rack-contrib'
spec.add_runtime_dependency 'rack-cors'
spec.add_runtime_dependency 'rails', '4.1.0'
spec.add_runtime_dependency 'sass-rails', '~> 4.0.3'
spec.add_runtime_dependency 'sqlite3'
spec.add_runtime_dependency 'therubyracer'
spec.add_runtime_dependency 'thor'
spec.add_runtime_dependency 'turbolinks'
spec.add_runtime_dependency 'uglifier', '>= 1.3.0'
end