Skip to content

Commit 664e278

Browse files
authored
Merge pull request #117 from glebm/old-rubies
Support ancient obsolete Rubies (v2.0.0+)
2 parents 2f449db + 2963c57 commit 664e278

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@ language: ruby
33
bundler_args: "--binstubs --standalone --without documentation --path ../bundle"
44
script: "bundle exec rake test"
55
rvm:
6+
- 2.0.0
7+
- 2.1.10
8+
- 2.2.10
69
- 2.3.8
7-
- 2.4.5
8-
- 2.5.3
9-
- 2.6.1
10+
- 2.4.6
11+
- 2.5.5
12+
- 2.6.3
1013
notifications:
1114
email: false

sassc.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
1919
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
2020
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
2121

22-
spec.required_ruby_version = ">= 2.3.3"
22+
spec.required_ruby_version = ">= 2.0.0"
2323

2424
spec.require_paths = ["lib"]
2525

0 commit comments

Comments
 (0)