Add some dependencies to the gemspec and Gemfile

This commit is contained in:
R. Tyler Croy 2013-02-12 06:01:08 -08:00
parent 64c6f7e3da
commit 675b951e69
4 changed files with 10 additions and 0 deletions

1
.gitignore vendored
View File

@ -15,3 +15,4 @@ spec/reports
test/tmp
test/version_tmp
tmp
.rvmrc

View File

@ -2,3 +2,9 @@ source 'https://rubygems.org'
# Specify your gem's dependencies in stapfen.gemspec
gemspec
group :development do
gem 'rake'
gem 'rspec', '~> 2.11'
end

0
spec/spec_helper.rb Normal file
View File

View File

@ -16,4 +16,7 @@ Gem::Specification.new do |gem|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency('stomp', '>= 1.2.8')
end