Skip to content

Commit

Permalink
https://github.com/jollygoodcode/jollygoodcode.github.io/issues/21
Browse files Browse the repository at this point in the history
  • Loading branch information
jhwillett committed Jun 18, 2018
1 parent 7b0ed8a commit af7e03e
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 14 deletions.
8 changes: 8 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
appraise 'redis-3.0' do
gem 'redis', '~> 3.0'
end

appraise 'redis-3.2' do
gem 'redis', '~> 3.2'
end

appraise 'redis-3.3' do
gem 'redis', '~> 3.3'
end

appraise 'redis-4.0' do
gem 'redis', '~> 4.0'
end
17 changes: 11 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
# Development dependencies are captured in Gemfile and in
# gemfiles/*.gemfile, and managed with the gem 'approaisal', per the
# pattern:
#
# https://github.com/jollygoodcode/jollygoodcode.github.io/issues/21

source 'https://rubygems.org'

git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }

# Specify your gem's dependencies in redis-ick.gemspec
gemspec

group :development do
gem 'appraisal'
gem 'bundler', '~> 1.14'
gem 'rake', '~> 10.0'
gem 'appraisal', '~> 2.2.0'
gem 'bundler', '~> 1.16.1'
gem 'rake', '~> 12.3.1'
end

group :test do
gem 'minitest', '~> 5.0'
gem 'minitest', '~> 5.11.3'
gem 'redis-key_hash', '~> 0.0.4'
gem 'redis-namespace', '~> 1.5'
gem 'rubocop', '~> 0.50.0'
gem 'rubocop', '~> 0.54.0'
end
2 changes: 2 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
require 'rubygems'
require 'bundler/setup'
require 'bundler/gem_tasks'
require 'rake/testtask'

Expand Down
13 changes: 5 additions & 8 deletions redis-ick.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,10 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_development_dependency 'bundler', '~> 1.16.1'
spec.add_development_dependency 'minitest', '~> 5.11.3'
spec.add_development_dependency 'rake', '~> 12.3.1'
spec.add_development_dependency 'redis', '~> 3.2'
spec.add_development_dependency 'redis-key_hash', '~> 0.0.4'
spec.add_development_dependency 'redis-namespace', '~> 1.5'
spec.add_development_dependency 'rubocop', '~> 0.54.0'
spec.add_runtime_dependency 'redis-script_manager', '~> 0.0.2'

spec.add_runtime_dependency 'redis-script_manager', '=> 0.0.2'
# Development dependencies are captured in Gemfile, per the pattern:
#
# https://github.com/jollygoodcode/jollygoodcode.github.io/issues/21
#
end

0 comments on commit af7e03e

Please sign in to comment.