Skip to content

Commit

Permalink
Added Gemfile and Gemfile.lock, updated gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
derekcollison committed Nov 2, 2010
1 parent 871de2b commit 096d88b
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 1 deletion.
10 changes: 10 additions & 0 deletions Gemfile
@@ -0,0 +1,10 @@
source "http://rubygems.org"

gem 'eventmachine', '>= 0.12.10'
gem 'yajl-ruby', '>= 0.7.8', :require => ["yajl", "yajl/json_gem"]
gem 'daemons', '>= 1.1.0'

group :test do
gem 'rspec'
gem 'nats', :path => '.'
end
35 changes: 35 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,35 @@
PATH
remote: .
specs:
nats (0.2.7)
daemons (>= 1.1.0)
eventmachine (>= 0.12.10)
yajl-ruby (>= 0.7.8)

GEM
remote: http://rubygems.org/
specs:
daemons (1.1.0)
diff-lcs (1.1.2)
eventmachine (0.12.10)
rspec (2.0.1)
rspec-core (~> 2.0.1)
rspec-expectations (~> 2.0.1)
rspec-mocks (~> 2.0.1)
rspec-core (2.0.1)
rspec-expectations (2.0.1)
diff-lcs (>= 1.1.2)
rspec-mocks (2.0.1)
rspec-core (~> 2.0.1)
rspec-expectations (~> 2.0.1)
yajl-ruby (0.7.8)

PLATFORMS
ruby

DEPENDENCIES
daemons (>= 1.1.0)
eventmachine (>= 0.12.10)
nats!
rspec
yajl-ruby (>= 0.7.8)
2 changes: 1 addition & 1 deletion nats.gemspec
Expand Up @@ -3,7 +3,7 @@ require './lib/nats/server/const.rb'
spec = Gem::Specification.new do |s|
s.name = 'nats'
s.version = NATSD::VERSION
s.date = '2010-10-31'
s.date = '2010-11-1'
s.summary = 'Simple Publish-Subscribe Messaging System'
s.homepage = "http://github.com/derekcollison/nats"
s.description = "A lightweight, fast, publish-subscribe messaging system."
Expand Down

0 comments on commit 096d88b

Please sign in to comment.