-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://github.com/jollygoodcode/jollygoodcode.github.io/issues/21
- Loading branch information
jhwillett
committed
Jun 18, 2018
1 parent
7b0ed8a
commit af7e03e
Showing
4 changed files
with
26 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters