Skip to content
This repository has been archived by the owner on Nov 11, 2017. It is now read-only.

Commit

Permalink
bumping the gemspec to 1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Croak committed Mar 1, 2009
1 parent 7976dce commit 804169c
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 11 deletions.
20 changes: 20 additions & 0 deletions Rakefile
Expand Up @@ -12,3 +12,23 @@ Rake::TestTask.new(:test) do |t|
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end

gem_spec = Gem::Specification.new do |gem_spec|
gem_spec.name = "quietbacktrace"
gem_spec.version = "1.1.6"
gem_spec.summary = "Suppresses the noise in your Test::Unit backtraces."
gem_spec.email = "support@thoughtbot.com"
gem_spec.homepage = "http://github.com/thoughtbot/quietbacktrace"
gem_spec.description = "Silence or filter lines of your backtrace programatically."
gem_spec.authors = ["thoughtbot, inc.", "Dan Croak", "James Golick",
"Mike Burns", "Joe Ferris", "Boston.rb"]
gem_spec.files = FileList["[A-Z]*", "{lib}/**/*"]
end

desc "Generate a gemspec file"
task :gemspec do
File.open("#{gem_spec.name}.gemspec", 'w') do |f|
f.write gem_spec.to_yaml
end
end

73 changes: 62 additions & 11 deletions quietbacktrace.gemspec
@@ -1,11 +1,62 @@
Gem::Specification.new do |s|
s.name = "quietbacktrace"
s.version = "1.1.5"
s.date = %q{2008-10-02}
s.email = "dcroak@thoughtbot.com"
s.homepage = "http://github.com/thoughtbot/quietbacktrace"
s.summary = "Quiet Backtrace suppresses the noise in your Test::Unit backtrace."
s.description = "Quiet Backtrace suppresses the noise in your Test::Unit backtrace. It also provides hooks for you to add additional silencers and filters."
s.files = ["README.markdown", "lib/quietbacktrace.rb", "MIT-LICENSE"]
s.authors = ["thoughtbot, inc.", "Dan Croak", "James Golick"]
end
--- !ruby/object:Gem::Specification
name: quietbacktrace
version: !ruby/object:Gem::Version
version: 1.1.6
platform: ruby
authors:
- thoughtbot, inc.
- Dan Croak
- James Golick
- Mike Burns
- Joe Ferris
- Boston.rb
autorequire:
bindir: bin
cert_chain: []

date: 2009-03-01 00:00:00 -05:00
default_executable:
dependencies: []

description: Silence or filter lines of your backtrace programatically.
email: support@thoughtbot.com
executables: []

extensions: []

extra_rdoc_files: []

files:
- MIT-LICENSE
- Rakefile
- README.markdown
- lib/backtrace_cleaner.rb
- lib/quietbacktrace.rb
has_rdoc: false
homepage: http://github.com/thoughtbot/quietbacktrace
post_install_message:
rdoc_options: []

require_paths:
- lib
required_ruby_version: !ruby/object:Gem::Requirement
requirements:
- - ">="
- !ruby/object:Gem::Version
version: "0"
version:
required_rubygems_version: !ruby/object:Gem::Requirement
requirements:
- - ">="
- !ruby/object:Gem::Version
version: "0"
version:
requirements: []

rubyforge_project:
rubygems_version: 1.3.1
signing_key:
specification_version: 2
summary: Suppresses the noise in your Test::Unit backtraces.
test_files: []

0 comments on commit 804169c

Please sign in to comment.