forked from rollbar/rollbar-gem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollbar.gemspec
28 lines (24 loc) · 1.17 KB
/
rollbar.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/rollbar/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Rollbar, Inc."]
gem.email = ["support@rollbar.com"]
gem.description = %q{Rails plugin to catch and send exceptions to Rollbar}
gem.summary = %q{Reports exceptions to Rollbar}
gem.homepage = "https://github.com/rollbar/rollbar-gem"
gem.license = 'MIT'
gem.files = `git ls-files`.split($\)
gem.test_files = gem.files.grep(%r{^(spec)/})
gem.name = "rollbar"
gem.require_paths = ["lib"]
gem.version = Rollbar::VERSION
gem.add_runtime_dependency 'multi_json', '~> 1.3'
gem.add_development_dependency 'rails', '>= 3.0.0'
gem.add_development_dependency 'rspec-rails', '>= 2.14.0'
gem.add_development_dependency 'database_cleaner', '~> 1.0.0'
gem.add_development_dependency 'girl_friday', '>= 0.11.1'
gem.add_development_dependency 'sucker_punch', '>= 1.0.0' if RUBY_VERSION != '1.8.7'
gem.add_development_dependency 'sidekiq', '>= 2.13.0' if RUBY_VERSION != '1.8.7'
gem.add_development_dependency 'genspec', '>= 0.2.7'
gem.add_development_dependency 'sinatra'
end