Skip to content

Commit

Permalink
Merge pull request #25 from envato/remove_unsupported_ruby_versions
Browse files Browse the repository at this point in the history
Only build against supported versions of ruby. 2.3 +
  • Loading branch information
Joe Sustaric authored May 14, 2019
2 parents 72db619 + 55cd69f commit b549a89
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@ before_install:
- gem install bundler
language: ruby
rvm:
- '1.9'
- '2.0'
- '2.1'
- '2.2'
- '2.3.0'
- '2.3'
- '2.4'
- '2.5'
- '2.6'
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Removed
- This gem will no longer run on Ruby versions < 2.3
2 changes: 2 additions & 0 deletions zxcvbn-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Gem::Specification.new do |gem|
gem.version = Zxcvbn::VERSION
gem.license = 'MIT'

gem.required_ruby_version = '~> 2.3'

gem.add_development_dependency 'therubyracer'
gem.add_development_dependency 'rspec'
end

0 comments on commit b549a89

Please sign in to comment.