Skip to content

Commit

Permalink
kick out 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
grosser committed Oct 5, 2015
1 parent fc5a9d2 commit 6c3b014
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -2,7 +2,6 @@ language: ruby
cache: bundler
sudo: false
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.7
Expand Down
6 changes: 3 additions & 3 deletions Gemfile
@@ -1,5 +1,5 @@
source "http://rubygems.org"
source "https://rubygems.org"

# Specify your gem's dependencies in resque-pool.gemspec
gemspec
gem "json" # so 1.8 can have a halfway decent json gem

gem 'mustache', '~> 0.99.8' # 1.0 needs ruby 2.0
5 changes: 2 additions & 3 deletions resque-pool.gemspec
Expand Up @@ -13,6 +13,8 @@ Gem::Specification.new do |s|
saving memory (w/REE) and monitoring their uptime
EOF

s.required_ruby_version = '>= 1.9.3'

s.add_dependency "resque", "~> 1.22"
s.add_dependency "rake"
s.add_development_dependency "rspec", "~> 2.10"
Expand All @@ -21,9 +23,6 @@ Gem::Specification.new do |s|
s.add_development_dependency "bundler", "~> 1.0"
s.add_development_dependency "ronn"

# only in ruby 1.8
s.add_development_dependency "SystemTimer" if RUBY_VERSION =~ /^1\.8/

s.files = %w( README.md Rakefile LICENSE.txt Changelog.md )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("bin/**/*")
Expand Down

0 comments on commit 6c3b014

Please sign in to comment.