Clean up the Rakefile and the gemspec for final (internal) consumption

This commit is contained in:
R. Tyler Croy 2013-02-12 07:11:42 -08:00
parent 339492bd1c
commit 7e0ac31977
2 changed files with 13 additions and 4 deletions

View File

@ -1 +1,10 @@
require "bundler/gem_tasks"
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new('spec') do |t|
t.rspec_opts = '--color --fail-fast'
end
task :test => :spec
task :default => [:spec, :build]

View File

@ -7,9 +7,9 @@ Gem::Specification.new do |gem|
gem.name = "stapfen"
gem.version = Stapfen::VERSION
gem.authors = ["R. Tyler Croy"]
gem.email = ["tyler@monkeypox.org"]
gem.description = %q{TODO: Write a gem description}
gem.summary = %q{TODO: Write a gem summary}
gem.email = ["rtyler.croy@lookout.com"]
gem.description = "A simple gem for writing good basic STOMP workers"
gem.summary = "A simple gem for writing good basic STOMP workers"
gem.homepage = ""
gem.files = `git ls-files`.split($/)