-
Notifications
You must be signed in to change notification settings - Fork 3
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 #1 from locaweb/update-heartcheck-version
Changing heartcheck to 2.0 to add support to ruby 2.7 remove support to ruby < 2.3
- Loading branch information
Showing
7 changed files
with
58 additions
and
18 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Documentation: | ||
Enabled: false | ||
|
||
Style/MultilineOperationIndentation: | ||
Enabled: false | ||
|
||
Style/Encoding: | ||
Enabled: false | ||
|
||
AllCops: | ||
# Include gemspec and Rakefile | ||
Include: | ||
- '**/*.gemspec' | ||
- '**/Rakefile' |
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,10 +1,11 @@ | ||
language: ruby | ||
rvm: | ||
- "1.9.3" | ||
- "2.0.0" | ||
- "2.1.0" | ||
- "2.2.4" | ||
- "2.3.0" | ||
install: bundle install -j 4 --retry 3 | ||
script: | ||
- RAILS_ENV=test bundle exec rspec spec | ||
matrix: | ||
include: | ||
- rvm: 2.3 | ||
- rvm: 2.4 | ||
- rvm: 2.5 | ||
- rvm: 2.6 | ||
- rvm: 2.7 |
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,14 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/). | ||
|
||
## [1.0.0] - 2020-03-11 | ||
## Changed | ||
- Add support for ruby 2.7 | ||
- Remove support for ruby < 2.3 | ||
- Change required version for gem heartcheck to fit for newer supported ruby versions | ||
|
||
## [0.1.0] - 2015-07-08 | ||
## Changed | ||
- A plugin to check CAS accessibility connection with heartcheck |
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,24 +1,30 @@ | ||
# coding: utf-8 | ||
lib = File.expand_path('../lib', __FILE__) | ||
# frozen_string_literal: true | ||
|
||
lib = File.expand_path('lib', __dir__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require 'heartcheck/cas/version' | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "heartcheck-cas" | ||
spec.name = 'heartcheck-cas' | ||
spec.version = Heartcheck::Cas::VERSION | ||
spec.authors = ["andrerocker"] | ||
spec.email = ["[email protected]"] | ||
spec.authors = ['andrerocker'] | ||
spec.email = ['[email protected]'] | ||
|
||
spec.summary = 'cas checkers to heartcheck' | ||
spec.description = 'Provides cas checkers to heartcheck' | ||
spec.homepage = 'http://github.com/locaweb/heartcheck-cas' | ||
spec.license = "MIT" | ||
spec.license = 'MIT' | ||
spec.files = Dir.glob('lib/**/*') | ||
spec.require_paths = ["lib"] | ||
spec.require_paths = ['lib'] | ||
|
||
spec.required_ruby_version = '>= 2.3' | ||
|
||
spec.add_dependency 'heartcheck', '~> 2.0' | ||
|
||
spec.add_development_dependency 'bundler', '> 1.6' | ||
spec.add_development_dependency 'pry-nav', '~> 0.2.4' | ||
spec.add_development_dependency 'rake', '~> 10.0' | ||
spec.add_development_dependency 'rspec', '~> 3.3' | ||
spec.add_development_dependency 'pry-nav', '~> 0.2.4' | ||
spec.add_dependency 'heartcheck', '~> 1.0' | ||
spec.add_development_dependency 'rubocop' | ||
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
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 Cas | ||
VERSION = "0.1.0" | ||
VERSION = "1.0.0" | ||
end | ||
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