Sha256: 09bea0a6fbb5bfe72dfba4f5b0f7a1ee5778ee4c94927c2fc1e77b9ddf9e0483
Contents?: true
Size: 1023 Bytes
Versions: 4
Compression:
Stored size: 1023 Bytes
Contents
# encoding: utf-8 require 'rubygems' require 'rake' require 'jeweler' 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 Jeweler::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 = "http://github.com/Sharagoz/rails_exception_handler" gem.license = "MIT" gem.summary = %Q{Highly customizable exception handling for Ruby on Rails} gem.description = %Q{} gem.email = "contact@sharagoz.com" gem.authors = ["Sharagoz"] gem.extra_rdoc_files = ['README.markdown'] gem.require_paths = ["lib"] gem.files.exclude 'spec/**/*' # dependencies defined in Gemfile end Jeweler::RubygemsDotOrgTasks.new
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rails_exception_handler-2.4.5 | Rakefile |
rails_exception_handler-2.4.4 | Rakefile |
rails_exception_handler-2.4.1 | Rakefile |
rails_exception_handler-2.4.0 | Rakefile |