Sha256: 15ad50c5b727f796790c8fae65a9b4319c649d524556b09fbc70c8d3310e84bf

Contents?: true

Size: 979 Bytes

Versions: 4

Compression:

Stored size: 979 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 #{files.join(' ')}"
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{Exception Handling for Rails 3}
  gem.description = %Q{}
  gem.email = "contact@sharagoz.com"
  gem.authors = ["Sharagoz"]
  gem.extra_rdoc_files = ['README.markdown']
  gem.require_paths = ["lib"]

  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rails_exception_handler-1.3.0 Rakefile
rails_exception_handler-1.2.1 Rakefile
rails_exception_handler-1.2.0 Rakefile
rails_exception_handler-1.1.2 Rakefile