-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from digaoddc/heartcheck_dependency
Manage Dependency
- Loading branch information
Showing
5 changed files
with
20 additions
and
10 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,13 +1,17 @@ | ||
language: ruby | ||
rvm: | ||
- 1.9.3 | ||
- 2.0.0 | ||
- 2.1.7 | ||
- 2.2.4 | ||
- 2.3.0 | ||
services: | ||
- redis-server | ||
before_install: gem install bundler -v 1.10.6 | ||
install: bundle install -j 4 --retry 3 | ||
script: | ||
- bin/rspec | ||
|
||
matrix: | ||
include: | ||
- rvm: "1.9.3" | ||
gemfile: Gemfile-old-ruby | ||
- rvm: "2.0.0" | ||
- rvm: "2.1.7" | ||
- rvm: "2.2.4" | ||
- rvm: "2.3.0" | ||
- rvm: "2.4.0" |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'rack', '~> 1.6.8' | ||
|
||
# Specify your gem's dependencies in heartcheck-resque.gemspec | ||
gemspec |
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
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
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,5 +1,5 @@ | ||
module Heartcheck | ||
module Resque | ||
VERSION = '0.0.1' | ||
VERSION = '0.0.2' | ||
end | ||
end |