Skip to content

Commit

Permalink
Gemfile updates
Browse files Browse the repository at this point in the history
  • Loading branch information
derekcollison committed Jun 19, 2015
1 parent 3eb6427 commit f0e5658
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,3 @@ rvm:
- 1.9
- 2.0
- 2.1

branches:
only:
- cluster
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ source "http://rubygems.org"

gemspec

gem 'eventmachine', '>= 1.0.3'
gem 'daemons', '>= 1.1.9'
gem 'eventmachine', '>= 1.0.7'
gem 'daemons', '>= 1.2.2'
gem 'json_pure', '>= 1.8.1', :require => 'json'
gem 'thin', '>= 1.6.0'

Expand Down
10 changes: 5 additions & 5 deletions nats.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ require 'nats/server/const'
spec = Gem::Specification.new do |s|
s.name = 'nats'
s.version = NATSD::VERSION
s.summary = 'A lightweight cloud messaging system.'
s.homepage = 'http://nats.io'
s.description = 'A lightweight cloud messaging system.'
s.summary = 'NATS is an open-source, high-performance, lightweight cloud messaging system.'
s.homepage = 'https://nats.io'
s.description = 'NATS is an open-source, high-performance, lightweight cloud messaging system.'
s.licenses = ['MIT']
s.has_rdoc = true

s.authors = ['Derek Collison']
s.email = ['derek.collison@gmail.com']

s.add_dependency('eventmachine', '~> 1.0', '>= 1.0.3')
s.add_dependency('eventmachine', '~> 1.0', '>= 1.0.7')
s.add_dependency('json_pure', '~> 1.8', '>= 1.8.1')
s.add_dependency('daemons', '~> 1.1', '>= 1.1.9')
s.add_dependency('daemons', '~> 1.1', '>= 1.2.2')
s.add_dependency('thin', '~> 1.6', '>= 1.6.3')

s.require_paths = ['lib']
Expand Down

0 comments on commit f0e5658

Please sign in to comment.