forked from thoughtbot/hoptoad_notifier
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhoptoad_notifier.gemspec
More file actions
35 lines (27 loc) · 1.17 KB
/
hoptoad_notifier.gemspec
File metadata and controls
35 lines (27 loc) · 1.17 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
34
35
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'hoptoad_notifier/version'
Gem::Specification.new do |s|
s.name = %q{hoptoad_notifier}
s.version = HoptoadNotifier::VERSION
s.summary = %q{Send your application errors to our hosted service and reclaim your inbox.}
s.files = ['[A-Z]*', 'generators/**/*.*', 'lib/**/*.rb',
'test/**/*.rb', 'rails/**/*.rb', 'script/*',
'lib/templates/*.erb'].map { |glob| Dir.glob(glob) }.flatten
s.require_path = 'lib'
s.test_files = Dir[*['test/**/*_test.rb']]
s.has_rdoc = true
s.extra_rdoc_files = ["README.rdoc"]
s.rdoc_options = ['--line-numbers', "--main", "README.rdoc"]
s.add_runtime_dependency("activesupport")
s.add_development_dependency("activerecord")
s.add_development_dependency("actionpack")
s.add_development_dependency("jferris-mocha")
s.add_development_dependency("nokogiri")
s.add_development_dependency("shoulda")
s.authors = ["thoughtbot, inc"]
s.email = %q{support@hoptoadapp.com}
s.homepage = "http://www.hoptoadapp.com"
s.platform = Gem::Platform::RUBY
end