-
Notifications
You must be signed in to change notification settings - Fork 26
/
Rakefile
34 lines (30 loc) · 1013 Bytes
/
Rakefile
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
# encoding: utf-8
require 'rubygems'
require 'rake'
require 'juwelier'
task :default => :test
desc 'Run tests'
task :test do
files = ["spec/unit/handler_spec.rb",
"spec/unit/parser_spec.rb",
"spec/unit/configuration_spec.rb",
"spec/integration/rails_exception_handler_spec.rb",
"spec/integration/configuration_spec.rb"
]
system "bundle exec rspec spec"
end
Juwelier::Tasks.new do |gem|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
gem.name = "rails_exception_handler"
gem.homepage = "https://github.com/bjorntrondsen/rails_exception_handler"
gem.license = "MIT"
gem.summary = %Q{Highly customizable exception handling for Ruby on Rails}
gem.description = %Q{}
gem.email = ""
gem.authors = ["btrondsen"]
gem.extra_rdoc_files = ['README.markdown']
gem.require_paths = ["lib"]
gem.files.exclude 'spec/**/*'
# dependencies defined in Gemfile
end
Juwelier::RubygemsDotOrgTasks.new