forked from flyingmachine/whoops
-
Notifications
You must be signed in to change notification settings - Fork 1
/
whoops.gemspec
25 lines (23 loc) · 1008 Bytes
/
whoops.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
# Provide a simple gemspec so you can easily use your enginex
# project in your rails apps through git.
Gem::Specification.new do |s|
s.name = "whoops"
s.authors = ["Daniel Higginbotham"]
s.summary = "A Rails engine which receives logs and provides an interface for them"
s.description = "A Rails engine which receives logs and provides an interface for them"
s.homepage = "http://www.whoopsapp.com"
s.files = Dir["{app,lib,config}/**/*"] + ["MIT-LICENSE", "Rakefile", "Gemfile", "README.asciidoc"]
s.version = "0.1.10"
s.add_dependency('rake', '~>0.9.2.2')
s.add_dependency('rails', '~>3')
s.add_dependency('sass')
s.add_dependency('haml')
s.add_dependency('mongo')
s.add_dependency('bson_ext')
s.add_dependency('mongoid', '2.0.1')
s.add_dependency('will_paginate', '~> 3.0.pre2')
s.add_development_dependency('rspec-rails')
s.add_development_dependency('fabrication')
s.add_development_dependency('faker')
s.add_development_dependency("capybara", ">= 0.4.0")
end