Skip to content

Commit

Permalink
Merge pull request #264 from olleolleolle/fix/bundle-with-ruby-versio…
Browse files Browse the repository at this point in the history
…n-marker

Gemfile with ruby version marker, instead of specific gemfiles/ files
  • Loading branch information
michaelklishin authored Nov 19, 2016
2 parents 694f104 + 71d61ce commit 5e92111
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 13 deletions.
9 changes: 2 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,12 @@ cache: bundler
before_install: gem i bundler
matrix:
include:
- rvm: 2.3.0
gemfile: gemfiles/Gemfile.activesupport5
- rvm: 2.3.2
- rvm: 2.2
gemfile: gemfiles/Gemfile.activesupport4
- rvm: 2.1
gemfile: gemfiles/Gemfile.activesupport4
- rvm: 2.0
gemfile: gemfiles/Gemfile.activesupport4
- rvm: jruby-9.1.5.0
- rvm: jruby-9.1.6.0
jdk: oraclejdk8
gemfile: gemfiles/Gemfile.activesupport5
env:
- JRUBY_OPTS='--debug'

Expand Down
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
source 'https://rubygems.org'

ruby RUBY_VERSION

gemspec

group :development do
Expand Down
2 changes: 0 additions & 2 deletions gemfiles/Gemfile.activesupport4

This file was deleted.

2 changes: 0 additions & 2 deletions gemfiles/Gemfile.activesupport5

This file was deleted.

4 changes: 2 additions & 2 deletions hutch.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ Gem::Specification.new do |gem|
end
gem.add_runtime_dependency 'carrot-top', '~> 0.0.7'
gem.add_runtime_dependency 'multi_json', '~> 1.12'
gem.add_runtime_dependency 'activesupport'
gem.add_runtime_dependency 'activesupport', '>= 4.2', '< 6'

gem.name = 'hutch'
gem.summary = 'Easy inter-service communication using RabbitMQ.'
gem.description = 'Hutch is a Ruby library for enabling asynchronous ' +
gem.description = 'Hutch is a Ruby library for enabling asynchronous ' \
'inter-service communication using RabbitMQ.'
gem.version = Hutch::VERSION.dup
gem.required_ruby_version = '>= 2.0'
Expand Down

0 comments on commit 5e92111

Please sign in to comment.