updated rspec

This commit is contained in:
Colin Surprenant 2013-06-17 13:46:04 -04:00
parent 99b261f240
commit 844911dfc4
2 changed files with 14 additions and 14 deletions

View File

@ -7,17 +7,17 @@ PATH
GEM
remote: https://rubygems.org/
specs:
diff-lcs (1.1.3)
diff-lcs (1.2.4)
rake (10.0.4)
redis (3.0.4)
rspec (2.11.0)
rspec-core (~> 2.11.0)
rspec-expectations (~> 2.11.0)
rspec-mocks (~> 2.11.0)
rspec-core (2.11.1)
rspec-expectations (2.11.3)
diff-lcs (~> 1.1.3)
rspec-mocks (2.11.3)
rspec (2.13.0)
rspec-core (~> 2.13.0)
rspec-expectations (~> 2.13.0)
rspec-mocks (~> 2.13.0)
rspec-core (2.13.1)
rspec-expectations (2.13.0)
diff-lcs (>= 1.1.3, < 2.0)
rspec-mocks (2.13.1)
PLATFORMS
java
@ -25,4 +25,4 @@ PLATFORMS
DEPENDENCIES
redis
redstorm!
rspec (~> 2.11.0)
rspec (~> 2.13)

View File

@ -3,7 +3,7 @@ $:.unshift libdir unless $:.include?(libdir)
require 'red_storm/version'
Gem::Specification.new do |s|
Gem::Specification.new do |s|
s.name = 'redstorm'
s.version = RedStorm::VERSION
s.authors = ['Colin Surprenant']
@ -11,14 +11,14 @@ Gem::Specification.new do |s|
s.homepage = 'https://github.com/colinsurprenant/redstorm'
s.summary = 'JRuby on Storm'
s.description = 'JRuby integration & DSL for the Storm distributed realtime computation system'
s.rubyforge_project = 'redstorm'
s.files = Dir.glob("{lib/**/*}") + Dir.glob("{ivy/*.xml}") + Dir.glob("{examples/**/*}") + Dir.glob("{src/**/*.java}") + Dir.glob("{bin/**/*}") + %w(redstorm.gemspec Rakefile README.md CHANGELOG.md LICENSE.md)
s.require_paths = ['lib']
s.bindir = 'bin'
s.executables = ['redstorm']
s.add_development_dependency 'rspec', '~> 2.11.0'
s.add_development_dependency 'rspec', '~> 2.13'
s.add_runtime_dependency 'rake'
end