Sha256: 203f93edcc8248044c93ce50765048fb64ef65200501cc15b7bc4d7b4266630d
Contents?: true
Size: 1011 Bytes
Versions: 7
Compression:
Stored size: 1011 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"] gem.files.exclude 'spec/**/*' # dependencies defined in Gemfile end Jeweler::RubygemsDotOrgTasks.new
Version data entries
7 entries across 7 versions & 1 rubygems