Sha256: 5d440dd3cd5bfb5b832a100ca75f865f3df531d8b1206c1a8046bd534fced1ee

Contents?: true

Size: 997 Bytes

Versions: 6

Compression:

Stored size: 997 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{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"]
  gem.files.exclude 'spec/**/*'

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rails_exception_handler-2.3.5 Rakefile
rails_exception_handler-2.3.4 Rakefile
rails_exception_handler-2.3.3 Rakefile
rails_exception_handler-2.3.2 Rakefile
rails_exception_handler-2.3.1 Rakefile
rails_exception_handler-2.3.0 Rakefile